mirror of
https://github.com/openmoh/openmohaa.git
synced 2025-05-10 04:27:10 +03:00
Added objective status and flags enum
This commit is contained in:
parent
91dc3e5884
commit
c0726f0634
1 changed files with 14 additions and 0 deletions
|
@ -827,4 +827,18 @@ movement on the server game.
|
||||||
}
|
}
|
||||||
#endif
|
#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 */
|
#endif /* bg_public.h */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue