mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-05-01 09:18:00 +03:00
26 lines
419 B
C++
26 lines
419 B
C++
#pragma once
|
|
|
|
#include "GameScriptSettings.h"
|
|
#include <string>
|
|
|
|
namespace sol {
|
|
class state;
|
|
}
|
|
|
|
struct GameScriptSettings
|
|
{
|
|
int ScreenWidth;
|
|
int ScreenHeight;
|
|
bool EnableLoadSave;
|
|
bool EnableDynamicShadows;
|
|
bool EnableWaterCaustics;
|
|
bool Windowed;
|
|
std::string WindowTitle;
|
|
int DrawingDistance;
|
|
bool ShowRendererSteps;
|
|
bool ShowDebugInfo;
|
|
std::string ErrorMode;
|
|
|
|
static void Register(sol::state* lua);
|
|
};
|
|
|