new core version, window flags

This commit is contained in:
2026-04-16 13:49:29 +02:00
parent 73c6ee068b
commit d20361b4e8
2 changed files with 3 additions and 1 deletions

View File

@@ -2,10 +2,12 @@
#include "Application.h" #include "Application.h"
#include "Overlay.h" #include "Overlay.h"
#include "SDL3/SDL_main.h" #include "SDL3/SDL_main.h"
#include "SDL3/SDL_video.h"
int main(int argc, char *argv[]) { int main(int argc, char *argv[]) {
SakuraVNE::AppData appData; SakuraVNE::AppData appData;
appData.name = "Sakura Visual Novel Creator"; appData.name = "Sakura Visual Novel Creator";
appData.windowdata.windowFlags = SDL_WINDOW_RESIZABLE | SDL_WINDOW_HIGH_PIXEL_DENSITY;
appData.windowdata.title = appData.name; appData.windowdata.title = appData.name;
appData.windowdata.width = 1280; appData.windowdata.width = 1280;
appData.windowdata.height = 720; appData.windowdata.height = 720;