summaryrefslogtreecommitdiff
path: root/Runtime/Lua/LuaHelper.h
blob: 10d9421211f6aa436cfbaa9f181dca6d8b62642c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once
#include "Runtime/Math/Rect.h"
#include "Runtime/Math/Vector2.h"
#include "./LuaBind/LuaBind.h"

// lua 5.1 doc: https://www.lua.org/manual/5.1/

class LuaHelper 
{
public:
    static int Call(const char* func, const char* params, ...);

};