SHERLOCK: RT: Cleanup of Exit class and fix exiting scenes

This commit is contained in:
Paul Gilbert 2015-07-02 20:53:40 -04:00
parent d6bf970a58
commit 480003f48d
16 changed files with 53 additions and 51 deletions

View file

@ -122,6 +122,11 @@ public:
int _facing;
PositionFacing() : Point32(), _facing(0) {}
PositionFacing(int xp, int yp, int theFacing) : Point32(xp, yp), _facing(theFacing) {}
PositionFacing &operator=(const Point32 &pt) {
x = pt.x; y = pt.y;
return *this;
}
};
struct WalkSequence {