GameObject.cs 132 B

12345678
  1. using Common.Base;
  2. namespace Model
  3. {
  4. public abstract class GameObject<K>: Entity<K> where K : Entity<K>
  5. {
  6. }
  7. }