Follow the leader
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

17 lines
296B

  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 int GameID;
  9. public int PlayerID;
  10. public bool Complete;
  11. }
  12. }