mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-14 07:55:01 +01:00
campaign UI working
This commit is contained in:
@@ -16,6 +16,18 @@ namespace nksrv.Utils
|
||||
public long ExpirationTime;
|
||||
public ulong UserID;
|
||||
}
|
||||
public class NetworkPosition
|
||||
{
|
||||
public float x;
|
||||
public float y;
|
||||
public float z;
|
||||
}
|
||||
public class FieldInfo
|
||||
{
|
||||
public List<NetFieldStageData> CompletedStages = new();
|
||||
public bool BossEntered = false;
|
||||
public NetworkPosition teamPosition = new();
|
||||
}
|
||||
public class User
|
||||
{
|
||||
// User info
|
||||
@@ -28,7 +40,9 @@ namespace nksrv.Utils
|
||||
|
||||
|
||||
// Game data
|
||||
public List<string> CompletedScenarios = new List<string>();
|
||||
public List<string> CompletedScenarios = new();
|
||||
public Dictionary<int, FieldInfo> FieldInfo = new();
|
||||
public Dictionary<string, string> MapJson = new();
|
||||
}
|
||||
public class CoreInfo
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user