示例#1
0
文件: Entity.cs 项目: Shien007/Season
 public void RegisterComponent(Component comp)
 {
     TaskManager.AddTask(comp);
     componentList.Add(comp);
     comp.Register(this);
     comp.Active();
 }