implement mob combat

This commit is contained in:
p2r3
2025-08-22 17:41:29 +03:00
parent ed6ad6de6d
commit e311b0cbe4
6 changed files with 138 additions and 19 deletions

View File

@@ -93,6 +93,9 @@ typedef struct {
short x;
uint8_t y;
short z;
// Lower 5 bits: health
// Upper 3 bits: reserved (?)
uint8_t data;
} MobData;
#pragma pack(pop)