Base stuff for actual game
This commit is contained in:
10
systems/ui.py
Normal file
10
systems/ui.py
Normal file
@@ -0,0 +1,10 @@
|
||||
import os
|
||||
|
||||
|
||||
def clear():
|
||||
os.system("cls" if os.name == "nt" else "clear")
|
||||
|
||||
|
||||
def title():
|
||||
clear()
|
||||
print("=== Whiskerbound ===\n")
|
||||
7
systems/world.py
Normal file
7
systems/world.py
Normal file
@@ -0,0 +1,7 @@
|
||||
from data.cat import Cat
|
||||
|
||||
|
||||
def shelter():
|
||||
# TODO: make
|
||||
name = input("Name your cat: ")
|
||||
return Cat(name)
|
||||
Reference in New Issue
Block a user