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. }