MoonWorks/src/WindowCreateInfo.cs

11 lines
181 B
C#
Raw Normal View History

2022-02-25 21:23:31 +00:00
namespace MoonWorks
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
}