open-story-teller/core/lib/story_options.h
anthony@rabine.fr f538148a9a
Some checks failed
build-story-editor / build_linux (push) Has been cancelled
build-story-editor / build_win32 (push) Has been cancelled
Deploy / deploy (push) Has been cancelled
Create separated core (WIP) GUI agnostic, new sub pages for functions
2024-08-30 13:25:40 +02:00

12 lines
244 B
C

#pragma once
#include "resource.h"
struct StoryOptions
{
Resource::ImageFormat image_format{Resource::IMG_SAME_FORMAT};
Resource::SoundFormat sound_format{Resource::SND_SAME_FORMAT};
int display_w{320};
int display_h{240};
};