1
0
mirror of https://github.com/lidgren/lidgren-network-gen3.git synced 2026-05-17 07:36:32 +09:00

Changed internal representation of time in a bunch of places from float to double

This commit is contained in:
lidgren
2015-01-17 16:35:01 +00:00
parent c15e4cb2c8
commit 999e113d65
7 changed files with 35 additions and 35 deletions

View File

@@ -5,14 +5,14 @@ namespace Lidgren.Network
internal struct NetStoredReliableMessage
{
public int NumSent;
public float LastSent;
public double LastSent;
public NetOutgoingMessage Message;
public int SequenceNumber;
public void Reset()
{
NumSent = 0;
LastSent = 0;
LastSent = 0.0;
Message = null;
}
}