選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
このリポジトリはアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュや、課題・プルリクエストのオープンはできません。
|
- 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 ulong GameID;
-
- public ulong PlayerID;
-
- public bool Complete;
-
- public int Points;
- }
- }
|