Beispiel #1
0
 public BumperTrg(int cX, int cY, OrientTrg o)
 {
     SetType(TypeBumper.TRIANGLE);
     SetOrientation(o);
     SetPos(cX, cY);
 }
Beispiel #2
0
 public void SetOrientation(OrientTrg o)
 {
     orientation = o;
 }
Beispiel #3
0
 public BumperTrg(Position p, OrientTrg o)
 {
     SetType(TypeBumper.TRIANGLE);
     SetOrientation(o);
     SetPos(p);
 }