You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

State.py 526 B

1234567891011121314151617181920212223
  1. from typing import List, Union
  2. import PyAPI.structures as THUAI6
  3. class State:
  4. teamScore: int
  5. self: Union[THUAI6.Student, THUAI6.Tricker]
  6. students: List[THUAI6.Student] = []
  7. trickers: List[THUAI6.Tricker] = []
  8. props: List[THUAI6.Prop] = []
  9. gameMap: List[List[THUAI6.PlaceType]] = []
  10. bullets: List[THUAI6.Bullet] = []
  11. bombedBullets: List[THUAI6.BombedBullet] = []
  12. mapInfo: THUAI6.GameMap = THUAI6.GameMap()
  13. gameInfo: THUAI6.GameInfo = THUAI6.GameInfo()
  14. guids: List[int] = []