GameObject.cs 429 B

1234567891011121314151617181920212223242526
  1. using Common.Base;
  2. namespace Model
  3. {
  4. public enum GameObjectType
  5. {
  6. Player = 0,
  7. }
  8. public class GameObject: Entity
  9. {
  10. private GameObjectType type;
  11. public GameObjectType Type
  12. {
  13. get
  14. {
  15. return this.type;
  16. }
  17. set
  18. {
  19. this.type = value;
  20. }
  21. }
  22. }
  23. }