This commit is contained in:
2023-10-04 14:42:59 +03:00
parent 27db256902
commit 8788cb0fcf
57 changed files with 914 additions and 78 deletions
@@ -25,6 +25,7 @@ public class RagonRoomPlayer
public string Id { get; }
public string Name { get; }
public bool IsLoaded { get; private set; }
public double Timestamp { get; private set; }
public RagonRoom Room { get; private set; }
public RagonEntityCache Entities { get; private set; }
@@ -65,4 +66,9 @@ public class RagonRoomPlayer
{
IsLoaded = false;
}
internal void SetTimestamp(double time)
{
Timestamp = time;
}
}