mirror of
https://github.com/zoriya/AnonymousGoose.git
synced 2026-05-26 20:02:31 +00:00
first scenario
This commit is contained in:
@@ -5,8 +5,7 @@ import pyxhook
|
||||
from term_utils import Term
|
||||
from command_helper import CommandHelper
|
||||
from trick import Trick
|
||||
from tricks.anim_ascii import AnimAsciiTrick
|
||||
|
||||
from scenario import intro
|
||||
|
||||
class AnonymousGoose:
|
||||
def __init__(self):
|
||||
@@ -54,7 +53,7 @@ class AnonymousGoose:
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
AnimAsciiTrick().run()
|
||||
intro()
|
||||
goose = AnonymousGoose()
|
||||
goose.run()
|
||||
goose.stop()
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
from data.scenario_resource import intro_text
|
||||
from term_utils import Term
|
||||
import time
|
||||
|
||||
def intro():
|
||||
intro_terminal = Term()
|
||||
intro_terminal.print_creepy(intro_text)
|
||||
time.sleep(2)
|
||||
Reference in New Issue
Block a user