1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-10-05 19:31:04 +00:00

[CSM] Add on_dignode callback (#5140)

This commit is contained in:
red-001 2017-01-29 17:43:44 +00:00 committed by Loïc Blot
parent ba66fce833
commit 073f5cf03d
6 changed files with 57 additions and 13 deletions

View file

@ -23,6 +23,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include "cpp_api/s_base.h"
#include "util/string.h"
#include "mapnode.h"
#ifdef _CRT_MSVCP_CURRENT
#include <cstdint>
@ -43,5 +44,7 @@ public:
void on_death();
void environment_step(float dtime);
void on_formspec_input(const std::string &formname, const StringMap &fields);
bool on_dignode(v3s16 p, MapNode node);
};
#endif