Files
FoCAPI/functions/functions.h
Drew Cavanaugh cce3245e4b Add Screen Text Lua functions
Committer: Drew C. <drewcav96@gmail.com>
2026-03-09 19:54:41 -05:00

14 lines
406 B
C

#pragma once
struct lua_State;
// Registers all custom Lua functions into the given state.
// Called once per lua_open() from Hook_lua_open().
void Register_All(lua_State* L);
// Per-module registration functions.
// Each checks its own required function pointer guards before registering.
void Register_FileIO(lua_State* L);
void Register_Players(lua_State* L);
void Register_ScreenText(lua_State* L);