format: reformat project
Signed-off-by: Vyacheslav Ivanov <islavaivanov76@gmail.com>
This commit is contained in:
@@ -1,29 +1,31 @@
|
||||
#ifndef LOGIC_SCRIPTING_SCRIPTING_HUD_HPP_
|
||||
#define LOGIC_SCRIPTING_SCRIPTING_HUD_HPP_
|
||||
|
||||
#include "../../typedefs.hpp"
|
||||
|
||||
#include <string>
|
||||
#include <filesystem>
|
||||
#include <string>
|
||||
|
||||
#include "../../typedefs.hpp"
|
||||
|
||||
namespace fs = std::filesystem;
|
||||
|
||||
class Hud;
|
||||
|
||||
namespace scripting {
|
||||
extern Hud* hud;
|
||||
extern Hud *hud;
|
||||
|
||||
void on_frontend_init(Hud* hud);
|
||||
void on_frontend_init(Hud *hud);
|
||||
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
|
||||
*/
|
||||
void load_hud_script(const scriptenv &env, const std::string &packid, const fs::path &file);
|
||||
void load_hud_script(
|
||||
const scriptenv &env, const std::string &packid, const fs::path &file
|
||||
);
|
||||
}
|
||||
|
||||
#endif // LOGIC_SCRIPTING_SCRIPTING_HUD_HPP_
|
||||
#endif // LOGIC_SCRIPTING_SCRIPTING_HUD_HPP_
|
||||
|
||||
Reference in New Issue
Block a user