mirror of
https://github.com/Pax1601/DCSOlympus.git
synced 2025-10-29 16:56:34 +00:00
14 lines
324 B
C++
14 lines
324 B
C++
#pragma once
|
|
#include "framework.h"
|
|
#include "LUAUtils.h"
|
|
|
|
namespace DCSUtils
|
|
{
|
|
void LogInfo(lua_State* L, string message);
|
|
void LogWarning(lua_State* L, string message);
|
|
void LogError(lua_State* L, string message);
|
|
void Log(lua_State* L, string message, int level);
|
|
|
|
map<int, json::value> getAllUnits(lua_State* L);
|
|
}
|