Files
PrinceOfGlory/Packages/com.firstgeargames.fishnet/Runtime/Managing/Timing/TickRounding.cs
2026-03-03 03:15:46 +08:00

23 lines
448 B
C#

namespace FishNet.Managing.Timing
{
/// <summary>
/// How ticks are rounded when using time.
/// </summary>
public enum TickRounding
{
/// <summary>
/// Rounds up.
/// </summary>
RoundUp,
/// <summary>
/// Rounds down.
/// </summary>
RoundDown,
/// <summary>
/// Rounds to the nearest whole.
/// </summary>
RoundNearest
}
}