rename attractor flag to type

This commit is contained in:
aap
2020-06-25 15:12:57 +02:00
parent 077bcf1c82
commit 2b21f92347
3 changed files with 7 additions and 7 deletions

View File

@ -27,8 +27,8 @@ enum {
};
enum {
ATTRACTORFLAG_ICECREAM,
ATTRACTORFLAG_STARE
ATTRACTORTYPE_ICECREAM,
ATTRACTORTYPE_STARE
};
enum {
@ -64,7 +64,7 @@ public:
};
struct Attractor {
CVector dir;
uint8 flags;
int8 type;
uint8 probability;
};
struct PedAttractor {