update frame limiter docs some more

pull/51/head
cosmonaut 2023-09-19 13:47:19 -07:00
parent 653f90c29f
commit dd79090028
1 changed files with 4 additions and 3 deletions

View File

@ -1,8 +1,6 @@
namespace MoonWorks
{
/// <summary>
/// The Game's frame limiter mode. Specifies a maximum rendering frames per second value.
/// </summary>
public enum FrameLimiterMode
{
/// <summary>
@ -16,6 +14,9 @@ namespace MoonWorks
Capped
}
/// <summary>
/// The Game's frame limiter setting. Specifies uncapped framerate or a maximum rendering frames per second value.
/// </summary>
public struct FrameLimiterSettings
{
public FrameLimiterMode Mode;