Refresh of repo required.

This commit is contained in:
Scionwest_cp 2010-01-17 18:56:44 -08:00
parent dafcc55437
commit 9311435007
47 changed files with 0 additions and 4421 deletions

View file

@ -1,27 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MudDesigner.MudEngine.Interfaces
{
public interface IGameObject
{
string Name { get; set; }
string Description { get; set; }
string Script { get; set; }
string Filename { get; }
void OnCreate();
void OnDestroy();
void OnEnter();
void OnExit();
void OnEquip();
void OnUnequip();
void OnMount();
void OnDismount();
}
}