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