osb/source/frontend/StarInterfaceLuaBindings.hpp
Kae ca1426eabc Lua chat callbacks + better font styling
golly gee whiz!! i hope i didn't fuck something up
2024-04-22 06:07:59 +10:00

16 lines
298 B
C++

#pragma once
#include "StarLua.hpp"
namespace Star {
STAR_CLASS(MainInterface);
STAR_CLASS(UniverseClient);
namespace LuaBindings {
LuaCallbacks makeInterfaceCallbacks(MainInterface* mainInterface);
LuaCallbacks makeChatCallbacks(MainInterface* mainInterface, UniverseClient* client);
}
}