diff options
| author | Henny022p <info@henny022.de> | 2025-03-09 12:01:00 +0000 |
|---|---|---|
| committer | Henny022p <info@henny022.de> | 2025-03-09 19:00:33 +0000 |
| commit | 46506530fc489732833e26d321b8879e9b13e6b4 (patch) | |
| tree | b4a93723ef662c60c2b5a6e3f755efd8994e3f5a /include/entity.h | |
| parent | 3b9b1a388beba1d8293bea15352775a6139d3d52 (diff) | |
cleanup structures.h
Diffstat (limited to 'include/entity.h')
| -rw-r--r-- | include/entity.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/entity.h b/include/entity.h index de76f3b7..a332089e 100644 --- a/include/entity.h +++ b/include/entity.h @@ -537,6 +537,16 @@ typedef struct { } CarriedEntity; extern CarriedEntity gCarriedEntity; +typedef struct { + u8 event_priority; /**< system requested priority @see Priority */ + u8 ent_priority; /**< entity requested priority @see Priority */ + u8 queued_priority; /**< @see Priority */ + u8 queued_priority_reset; /**< @see Priority */ + Entity* requester; + u16 priority_timer; +} PriorityHandler; +extern PriorityHandler gPriorityHandler; + /** * Current number of entities. * @see Entity |
