forked from MoonsideGames/MoonWorks
11 lines
181 B
C#
11 lines
181 B
C#
|
namespace MoonWorks
|
|||
|
{
|
|||
|
public struct WindowCreateInfo
|
|||
|
{
|
|||
|
public string WindowTitle;
|
|||
|
public uint WindowWidth;
|
|||
|
public uint WindowHeight;
|
|||
|
public ScreenMode ScreenMode;
|
|||
|
}
|
|||
|
}
|