Ducktaped together a FishNet version of the Transport, now I need to edit the LoadBalancer and Server so it connects and actually trades information
23 lines
No EOL
448 B
C#
23 lines
No EOL
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
|
|
}
|
|
|
|
|
|
} |