StationObscurum/Assets/FishNet/Runtime/Managing/Timing/TickRounding.cs

23 lines
448 B
C#
Raw Normal View History

2023-05-31 17:32:21 +02:00
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
}
}