Exemplo n.º 1
0
 public Entity(string _id)
 {
     Id = _id;
     EntityMatcher.Subscribe(this);
     components = new List <IComponent>();
 }
Exemplo n.º 2
0
 public Entity()
 {
     EntityMatcher.Subscribe(this);
     components = new List <IComponent>();
 }