mirror of
https://github.com/arabine/open-story-teller.git
synced 2025-12-06 17:09:06 +01:00
12 lines
244 B
C
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};
|
|
};
|