Compare commits

...

2 Commits

Author SHA1 Message Date
8672b7e9e4 clarify gameplay 2021-12-17 21:23:57 -07:00
cb94877610 remove wrong spelled file 2021-12-06 21:08:35 -07:00
2 changed files with 1 additions and 20 deletions

View File

@@ -5,7 +5,7 @@
* have station
* have drones
* send drones to retrive items
* use items to improve gameplay
* use items to improve station
## Design

View File

@@ -1,19 +0,0 @@
#!/usr/bin/python3.10
class Drone:
def __init__(self, money):
self.money = money
while True:
repl = input(">> ")
if repl == "s":
print("Show me the money")
elif repl == "q":
quit()
else:
print("Not a command, bitch")