scrapeboard/OPEN-GAME

24 lines
800 B
Plaintext
Raw Normal View History

2020-10-05 18:37:18 -04:00
#!/usr/bin/env python3
2017-12-14 03:49:02 -05:00
#
# Scrapeboard is an arcade game in development by Frank DeMarco (@diskmem) and Blake Andrews (@snakesandrews).
# It requires custom hardware to play, but it can be tested in keyboard mode with just the code in this
# repository. For more information on setting up and running the game, see the README. For more information
# on the game in general, visit https://scrape.nugget.fun
#
# This is the launcher script that creates a main game object and runs it. If you're running Python 3 with
# the pygame module installed, you should be able to run this script with the --no-serial flag to get it
# running even without the custom hardware:
#
# ./OPEN-GAME --no-serial
#
from sys import argv
2017-12-14 03:49:02 -05:00
if "--go-to-dir" in argv:
move_to_executable()
from NS import NS
NS().run()