MoonWorks/src/Window/WindowCreateInfo.cs

11 lines
188 B
C#
Raw Normal View History

2022-02-23 05:14:32 +00:00
namespace MoonWorks.Window
2021-01-19 19:24:23 +00:00
{
2022-02-23 05:14:32 +00:00
public struct WindowCreateInfo
{
public string WindowTitle;
public uint WindowWidth;
public uint WindowHeight;
public ScreenMode ScreenMode;
}
2021-01-19 19:24:23 +00:00
}