blob: 4ab0d6ad563e4f9ddc8e6740df2b6bd8c5cd1416 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include "Runtime/Math/Rect.h"
#include "Runtime/Math/Vector2.h"
#include "./LuaBind/LuaBind.h"
class LuaHelper
{
public:
static int Call(const char* func, const char* params, ...);
};
|