You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
206 B
C++
19 lines
206 B
C++
7 years ago
|
//
|
||
|
// Created by koncord on 03.08.17.
|
||
|
//
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "Utils.hpp"
|
||
|
|
||
|
#include "sol.hpp"
|
||
|
|
||
|
class LuaState;
|
||
|
|
||
|
class LuaUtils
|
||
|
{
|
||
|
//Singleton(LuaUtils)
|
||
|
public:
|
||
|
static void Init(LuaState &lua);
|
||
|
};
|