AutoWorld: basic Item handling

This commit is contained in:
Fabian Dill
2021-07-12 13:54:47 +02:00
parent babd809fa6
commit 31c550d410
11 changed files with 84 additions and 51 deletions

View File

@@ -1,6 +1,7 @@
from typing import NamedTuple, Union
import logging
class PlandoItem(NamedTuple):
item: str
location: str
@@ -25,7 +26,3 @@ class PlandoConnection(NamedTuple):
entrance: str
exit: str
direction: str # entrance, exit or both
class World():
pass