2020-03-27 20:19:28 -04:00
|
|
|
|
using System;
|
|
|
|
|
namespace Leadercraft.Server
|
|
|
|
|
{
|
|
|
|
|
internal struct CriteriaStruct
|
|
|
|
|
{
|
|
|
|
|
public float[][] Location; // 2 x (x,y,z) vector (min and then max)
|
|
|
|
|
|
|
|
|
|
public int Time; // time since start of game (seconds)
|
|
|
|
|
|
2020-05-14 23:09:39 -04:00
|
|
|
|
public ulong GameID;
|
2020-03-27 20:19:28 -04:00
|
|
|
|
|
2020-05-14 23:09:39 -04:00
|
|
|
|
public ulong PlayerID;
|
2020-03-27 20:19:28 -04:00
|
|
|
|
|
|
|
|
|
public bool Complete;
|
2020-05-14 23:09:39 -04:00
|
|
|
|
|
|
|
|
|
public int Points;
|
2020-03-27 20:19:28 -04:00
|
|
|
|
}
|
|
|
|
|
}
|