Files
Nuake/NuakeEditor/Source/Editor/LaunchSettings.h
2025-01-30 22:41:17 -05:00

12 lines
237 B
C++

#pragma once
#include <Nuake/Core/Maths.h>
#include <string>
struct LaunchSettings
{
int32_t monitor = 1;
Nuake::Vector2 resolution = { 1100, 630 };
std::string windowTitle = "Nuake Editor ";
std::string projectPath;
};