forked from teamnwah/openmw-tes3coop
19 lines
206 B
C++
19 lines
206 B
C++
|
//
|
||
|
// 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);
|
||
|
};
|