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