#pragma once /* This file is for free-floating functions that are used across more than one file. */ #include #include #include namespace Rocket { namespace Core { namespace Lua { //casts the variant to its specific type before pushing it to the stack void PushVariant(lua_State* L, Variant* var); } } }