diff options
Diffstat (limited to '')
-rw-r--r-- | source/Minecart.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/source/Minecart.h b/source/Minecart.h index 72270df85..d46b80b3f 100644 --- a/source/Minecart.h +++ b/source/Minecart.h @@ -21,13 +21,16 @@ class cMinecart : typedef cEntity super;
public:
+ CLASS_PROTODEF(cMinecart);
+
enum ePayload
{
- mpNone, // Empty minecart, ridable by player or mobs
- mpChest, // Minecart-with-chest, can store a grid of 3*8 items
+ mpNone, // Empty minecart, ridable by player or mobs
+ mpChest, // Minecart-with-chest, can store a grid of 3*8 items
mpFurnace, // Minecart-with-furnace, can be powered
// TODO: Other 1.5 features: hopper, tnt, dispenser, spawner
} ;
+
cMinecart(ePayload a_Payload, double a_X, double a_Y, double a_Z);
// cEntity overrides:
|