Follow the leader
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
此仓库已存档。您可以查看文件和克隆,但不能推送或创建工单/合并请求。

19 行
322B

  1. using System;
  2. namespace Leadercraft.Server
  3. {
  4. internal struct CriteriaStruct
  5. {
  6. public float[][] Location; // 2 x (x,y,z) vector (min and then max)
  7. public int Time; // time since start of game (seconds)
  8. public ulong GameID;
  9. public ulong PlayerID;
  10. public bool Complete;
  11. public int Points;
  12. }
  13. }