17 lines
296 B
C#
17 lines
296 B
C#
|
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)
|
|||
|
|
|||
|
public int GameID;
|
|||
|
|
|||
|
public int PlayerID;
|
|||
|
|
|||
|
public bool Complete;
|
|||
|
}
|
|||
|
}
|