-
Notifications
You must be signed in to change notification settings - Fork 1
/
highscore.py
41 lines (32 loc) · 1.4 KB
/
highscore.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#####################################################################################
## ____ _______ _________________ _ _____ ________ ___ ______________
## / __/__< / / / / __/ __/ ___/ __ \/ |/ / _ \ / __/ __ \/ _ \/_ __/ _/ __/
## / _//___/ /_ _/ _\ \/ _// /__/ /_/ / / // / _\ \/ /_/ / , _/ / / _/ // _/
## /_/ /_/ /_/ /___/___/\___/\____/_/|_/____/ /___/\____/_/|_| /_/ /___/___/
##
## A P-ROC Project by Mark Sunnucks
## Built on PyProcGame from Adam Preble and Gerry Stellenberg
## Thanks to Scott Danesi for inspiration from his Earthshaker Aftershock
#####################################################################################
#################################################################################
# __ __ _ __ ____
# / // /(_)___ _ / / / __/____ ___ ____ ___
# / _ // // _ `// _ \ _\ \ / __// _ \ / __// -_)
# /_//_//_/ \_, //_//_/ /___/ \__/ \___//_/ \__/
# /___/
#################################################################################
import procgame.game
from procgame import *
import pinproc
class HighScore(game.Mode):
def __init__(self, game, priority):
super(HighScore, self).__init__(game, priority)
############################
#### Standard Functions ####
############################
def mode_started(self):
pass
def update_lamps(self):
pass
def checkScores(self,callback):
pass