Added objective status and flags enum

This commit is contained in:
smallmodel 2023-08-14 02:33:59 +02:00
parent 91dc3e5884
commit c0726f0634
No known key found for this signature in database
GPG key ID: A96F163ED4891440

View file

@ -827,4 +827,18 @@ movement on the server game.
}
#endif
typedef enum {
OBJ_FLAG_NONE,
OBJ_FLAG_HIDDEN = 1,
OBJ_FLAG_CURRENT = 2,
OBJ_FLAG_COMPLETED = 4
} objective_flags_t;
typedef enum {
OBJ_STATUS_NONE = 0,
OBJ_STATUS_HIDDEN,
OBJ_STATUS_CURRENT,
OBJ_STATUS_COMPLETED
} objective_status_t;
#endif /* bg_public.h */