Files
Seele/src/Engine/Graphics/GraphicsResources.h
T

17 lines
231 B
C++
Raw Normal View History

#pragma once
2020-03-05 11:43:38 +01:00
#include "MinimalEngine.h"
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;
};
}