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