Esempio n. 1
0
 public void AddIndivid(int ObjID, int X, int Y)
 {
     Individ TeInd = new Individ(ObjID, X, Y);
     IndividList.Add(TeInd);
 }
Esempio n. 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);
 }
Esempio n. 3
0
 public void AddIndivid(int ObjID)
 {
     Individ TeInd = new Individ(ObjID);
     IndividList.Add(TeInd);
 }