The-Simpsons-Hit-and-Run/game/code/constants/physprop.h

23 lines
292 B
C

#ifndef PHYSPROPID_H
#define PHYSPROPID_H
// Enums for classtypeID
enum enClasstypeID
{
WTF,
GROUND,
PROP_STATIC,
PROP_MOVEABLE,
PROP_BREAKABLE,
ANIMATED_BV,
DRAWABLE,
STATIC,
PROP_DRAWABLE,
PROP_ANIM_BREAKABLE, //for the damn spider.
PROP_ONETIME_MOVEABLE
};
#endif