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.
|
- from typing import List, Union
- import structures as THUAI6
-
-
- class State:
- teamScore: int
- self: Union[THUAI6.Human, THUAI6.Butcher]
-
- humans: List[THUAI6.Human]
- butchers: List[THUAI6.Butcher]
-
- props: List[THUAI6.Prop]
-
- map: List[List[THUAI6.PlaceType]]
-
- guids: List[int]
|