summaryrefslogtreecommitdiff
path: root/intensemarcus.h
diff options
context:
space:
mode:
authorLuke Bratch <l_bratch@yahoo.co.uk>2010-11-26 12:49:49 +0000
committerLuke Bratch <l_bratch@yahoo.co.uk>2010-11-26 12:49:49 +0000
commit4718c83d9204a0a9e2e0add143e829bbb9c0bff0 (patch)
tree51b5192285126af720c8d7df3b45ad6261e8b218 /intensemarcus.h
parent5dd6f1089a86e69889056f3853b373025f68026f (diff)
Implement Sprite::get/setClip for sprite sheet clipping & Creature::Orient for setting a
Creature's clip/orientation
Diffstat (limited to 'intensemarcus.h')
-rw-r--r--intensemarcus.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/intensemarcus.h b/intensemarcus.h
index 543eafc..45bc78c 100644
--- a/intensemarcus.h
+++ b/intensemarcus.h
@@ -9,6 +9,12 @@ const int SCREEN_WIDTH = 800;
const int SCREEN_HEIGHT = 600;
const int SCREEN_BPP = 32;
const int FPS = 30;
+const int MARCUS_WIDTH = 64;
+const int MARCUS_HEIGHT = 124;
+const int ORIENT_FRONT = 0;
+const int ORIENT_BACK = 1;
+const int ORIENT_RIGHT = 2;
+const int ORIENT_LEFT = 3;
SDL_Surface *loadImage(std::string filename);