mirror of
https://github.com/fedddddd/iw5-gsc-utils.git
synced 2025-04-24 22:59:12 +00:00
13 lines
329 B
C++
13 lines
329 B
C++
#pragma once
|
|
#include "game/game.hpp"
|
|
|
|
namespace scripting
|
|
{
|
|
using script_function = void(*)(game::scr_entref_t);
|
|
|
|
script_function find_function(const std::string& name, const bool prefer_global);
|
|
int find_token_id(const std::string& name);
|
|
std::string find_token(unsigned int id);
|
|
std::string find_file(unsigned int id);
|
|
}
|