mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-31 21:45:33 +00:00
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);
|
||
|
};
|