mirror of
https://github.com/antopilo/Nuake.git
synced 2026-09-04 11:35:06 +03:00
12 lines
236 B
C++
12 lines
236 B
C++
#pragma once
|
|
#include <src/Core/Maths.h>
|
|
#include <string>
|
|
|
|
struct LaunchSettings
|
|
{
|
|
int32_t monitor = 1;
|
|
Nuake::Vector2 resolution = { 1920, 1080 };
|
|
std::string windowTitle = "Nuake Editor ";
|
|
std::string projectPath;
|
|
};
|