13cafc302bbd8f09277c92e982e524e17ab2c559
[naja.git] / naja / scenes / scene.py
1 """
2 Base Scene class.
3 """
4
5
6 class Scene(object):
7     """
8     A scene within the game.
9
10     E.g. Splash screen, game board, credits, win, lose.
11     """
12     def __init__(self):
13         pass
14
15     def enter(self):
16         pass
17
18     def exit(self):
19         pass
20
21     def handle_event(self):
22         pass