This repository has been archived on 2023-09-13. You can view files and clone it, but cannot push or open issues or pull requests.
station_obscurum_unity/Assets/FishNet/Runtime/Managing/Timing/TickRounding.cs

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
}
}