1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-08-06 17:41:04 +00:00

Add possibility to easier override HP and breath engine logic by Lua (#14179)

Co-authored-by: Lars Mueller <appgurulars@gmx.de>
This commit is contained in:
sfence 2024-08-21 20:24:43 +02:00 committed by GitHub
parent dc21924f31
commit f2c66b9ceb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 66 additions and 4 deletions

View file

@ -411,4 +411,10 @@ private:
// respawn(self)
static int l_respawn(lua_State *L);
// set_flags(self, flags)
static int l_set_flags(lua_State *L);
// get_flags(self)
static int l_get_flags(lua_State *L);
};