1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-07-02 16:38:41 +00:00
This commit is contained in:
Jonathon Anderson 2013-04-11 13:23:38 -05:00 committed by kwolekr
parent 1f42479e0c
commit 49f6e347f0
12 changed files with 873 additions and 5 deletions

View file

@ -160,7 +160,10 @@ enum ClientEventType
CE_SHOW_FORMSPEC,
CE_SPAWN_PARTICLE,
CE_ADD_PARTICLESPAWNER,
CE_DELETE_PARTICLESPAWNER
CE_DELETE_PARTICLESPAWNER,
CE_HUDADD,
CE_HUDRM,
CE_HUDCHANGE
};
struct ClientEvent
@ -217,6 +220,27 @@ struct ClientEvent
struct{
u32 id;
} delete_particlespawner;
struct{
u32 id;
u8 type;
v2f* pos;
std::string* name;
v2f* scale;
std::string* text;
u32 number;
u32 item;
u32 dir;
} hudadd;
struct{
u32 id;
} hudrm;
struct{
u32 id;
u8 stat;
v2f* v2fdata;
std::string* sdata;
u32 data;
} hudchange;
};
};