rename attractor flag to type

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

View File

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