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