diff options
Diffstat (limited to 'src/client.h')
-rw-r--r-- | src/client.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/client.h b/src/client.h index 9a788dfca..33d806f9f 100644 --- a/src/client.h +++ b/src/client.h @@ -133,7 +133,8 @@ enum ClientEventType CE_DELETE_PARTICLESPAWNER, CE_HUDADD, CE_HUDRM, - CE_HUDCHANGE + CE_HUDCHANGE, + CE_SET_SKY, }; struct ClientEvent @@ -217,6 +218,11 @@ struct ClientEvent u32 data; v3f *v3fdata; } hudchange; + struct{ + video::SColor *bgcolor; + std::string *type; + std::vector<std::string> *params; + } set_sky; }; }; |