This repository has been archived on 2025-06-18. You can view files and clone it, but cannot push or open issues or pull requests.
Files
skolavdf/phr/StickGame/Assets/FishNet/Runtime/Managing/Timing/TickRounding.cs
2024-03-24 22:21:16 +01:00

23 lines
470 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
}
}