DREAMWEB: Port 'setpickup' to C++ and added an enum for the object types

This commit is contained in:
Filippos Karapetis 2011-12-18 11:25:49 +02:00
parent f69dfba21a
commit 421c8cd262
9 changed files with 75 additions and 81 deletions

View file

@ -296,6 +296,13 @@ struct Atmosphere {
uint8 _repeat;
};
enum ObjectTypes {
kSetObjectType1 = 1,
kFreeObjectType = 2,
kSetObjectType3 = 3,
kExObjectType = 4
};
} // End of namespace DreamWeb
#endif