5 lines
180 B
C#
5 lines
180 B
C#
using System.Numerics;
|
|
|
|
namespace SilkWindows;
|
|
|
|
public readonly record struct SimpleWindowOptions(Vector2 Size, int Fps, bool Vsync, bool IsResizable, bool AlwaysOnTop = true); |