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