예제 #1
0
파일: Entity.cs 프로젝트: Shien007/Season
 public void RegisterComponent(DrawComponent comp)
 {
     TaskManager.AddTask(comp);
     componentList.Add(comp);
     comp.Register(this);
     comp.Active();
 }