예제 #1
0
 public void AddIndivid(int ObjID, int X, int Y)
 {
     Individ TeInd = new Individ(ObjID, X, Y);
     IndividList.Add(TeInd);
 }
예제 #2
0
 public void AddIndivid(int ObjID, int X, int Y, float speed_X, float speed_Y)
 {
     Individ TeInd = new Individ(ObjID, X, Y, speed_X, speed_Y);
     IndividList.Add(TeInd);
 }
예제 #3
0
 public void AddIndivid(int ObjID)
 {
     Individ TeInd = new Individ(ObjID);
     IndividList.Add(TeInd);
 }