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 309 B

12345678910111213141516
  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. map: List[List[THUAI6.PlaceType]]
  10. guids: List[int]