| 1234567891011121314151617181920212223242526 |
- using Common.Base;
- namespace Model
- {
- public enum GameObjectType
- {
- Player = 0,
- }
- public class GameObject: Entity
- {
- private GameObjectType type;
- public GameObjectType Type
- {
- get
- {
- return this.type;
- }
- set
- {
- this.type = value;
- }
- }
- }
- }
|