ca1426eabc
golly gee whiz!! i hope i didn't fuck something up
16 lines
298 B
C++
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);
|
|
}
|
|
|
|
}
|