#pragma once namespace gsc { struct script_info_t { const char* script_start; std::string file; std::string function; }; void scr_error(const char* error, const bool force_print = false); std::optional find_function(const char* pos); }