Skip to content
Permalink
Browse files
finished
  • Loading branch information
fergusonr committed Oct 2, 2020
1 parent 444dc00 commit 245303f9426261346a7104dcdbba6a32f9efc4dd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
@@ -1,18 +1,23 @@
import story
import os
import msvcrt as m
# the logic for the sotry...

# help function to display more informating about links in the story

# get user input

# clear the screen

def clear():
print('\nPress enter to continue')
m.getch()
os.system('cls')


# main
def main():
print(story.chairStory)
print(story.)
print(story.context)
selectContect = (input('Please select A,B,C,D...'))
if selectContect == 'a':
print(story.screen)
@@ -22,6 +27,7 @@ def main():
print(story.sept)
else:
pass
clear()
print(story.decision)
a = int(input('Please select 1 or 2...'))
if a == 1:
@@ -32,6 +38,5 @@ def main():
print(story.con)



main()

BIN +253 Bytes (100%) __pycache__/story.cpython-37.pyc
Binary file not shown.

0 comments on commit 245303f

Please sign in to comment.