2020-02-25 00:44:40 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
namespace Seele
|
|
|
|
|
{
|
|
|
|
|
struct GraphicsInitializer
|
|
|
|
|
{
|
|
|
|
|
const char* windowLayoutFile;
|
|
|
|
|
};
|
2020-03-02 19:07:49 +01:00
|
|
|
struct WindowCreateInfo
|
|
|
|
|
{
|
|
|
|
|
int32 width;
|
|
|
|
|
int32 height;
|
|
|
|
|
const char* title;
|
|
|
|
|
bool bFullscreen;
|
|
|
|
|
};
|
|
|
|
|
|
2020-02-25 00:44:40 +01:00
|
|
|
}
|