aboutsummaryrefslogtreecommitdiffstats
path: root/include/world.h
diff options
context:
space:
mode:
authordrumsetmonkey <abelleisle@roadrunner.com>2015-12-03 07:46:23 -0500
committerdrumsetmonkey <abelleisle@roadrunner.com>2015-12-03 07:46:23 -0500
commitbf91141782766f3648b62c6d96528fddb9ae7447 (patch)
treec6c9322ec7c4f111f05c7f639ab1d33bed9de40f /include/world.h
parentdc24164926a7988e018d32fff1977d2b40c89057 (diff)
parent6b44ecd9da08087f4a44dd3daef211e763eb1c61 (diff)
Added holding vs press key action
Diffstat (limited to 'include/world.h')
-rw-r--r--include/world.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/world.h b/include/world.h
index 6c0395d..57ea091 100644
--- a/include/world.h
+++ b/include/world.h
@@ -12,7 +12,8 @@
#define DAY_CYCLE 3000
typedef enum {
- BG_FOREST
+ BG_FOREST,
+ BG_WOODHOUSE
} WORLD_BG_TYPE;
typedef enum {
@@ -106,7 +107,7 @@ public:
void addStructure(_TYPE t,float x,float y,World *outside,World *inside);
void addMob(int t,float x,float y);
- void addMob(int t,float x,float y,void (*hey)());
+ void addMob(int t,float x,float y,void (*hey)(Mob *));
void addNPC(float x,float y);
void addObject(ITEM_ID, bool, const char *, float, float);