From 3383e8be9001826bf0d09f1fb73ad5013cc8627e Mon Sep 17 00:00:00 2001 From: Luke Bratch Date: Wed, 24 Nov 2010 19:57:03 +0000 Subject: Initial commit --- MapObject.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 MapObject.h (limited to 'MapObject.h') diff --git a/MapObject.h b/MapObject.h new file mode 100644 index 0000000..24bc827 --- /dev/null +++ b/MapObject.h @@ -0,0 +1,21 @@ +#ifndef MAPOBJECT_H +#define MAPOBJECT_H + +#include "Sprite.h" + +class MapObject : public Sprite { + public: + MapObject(); + + // Get the numerical type + int getType(); + + // Set the type + void setType(); + + protected: + // The numerical type + int type; +}; + +#endif -- cgit v1.2.3