GameObject.cs 216 B

1234567891011121314
  1. using Common.Base;
  2. namespace Model
  3. {
  4. public enum GameObjectType
  5. {
  6. Player = 0,
  7. }
  8. public class GameObject: Entity
  9. {
  10. public GameObjectType Type { get; set; }
  11. }
  12. }