add particles.emit(...) (WIP)

This commit is contained in:
MihailRis
2024-11-03 16:01:07 +03:00
parent 9728c674fc
commit c8187c5f25
14 changed files with 125 additions and 47 deletions
+7 -7
View File
@@ -8,20 +8,20 @@
namespace fs = std::filesystem;
class Hud;
class WorldRenderer;
namespace scripting {
extern Hud *hud;
extern WorldRenderer* renderer;
void on_frontend_init(Hud *hud);
void on_frontend_init(Hud* hud, WorldRenderer* renderer);
void on_frontend_render();
void on_frontend_close();
/**
* Load package-specific hud script
* @param env environment id
* @param packid content-pack id
* @param file script file path
*/
/// @brief Load package-specific hud script
/// @param env environment id
/// @param packid content-pack id
/// @param file script file path
void load_hud_script(
const scriptenv &env, const std::string &packid, const fs::path &file
);