summaryrefslogtreecommitdiff
path: root/pycameltris/screens/InGame.py
diff options
context:
space:
mode:
Diffstat (limited to 'pycameltris/screens/InGame.py')
-rw-r--r--pycameltris/screens/InGame.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pycameltris/screens/InGame.py b/pycameltris/screens/InGame.py
index f865c77..aa3e53b 100644
--- a/pycameltris/screens/InGame.py
+++ b/pycameltris/screens/InGame.py
@@ -5,6 +5,7 @@ import sys
import pygame
+from .Screen import Screen
from ..piece import *
from ..controller import Input, KeyboardController, JoystickController
from ..misc import Pause
@@ -247,7 +248,7 @@ def handle_input_released(instance, players, event):
frames_per_gridcell = [48, 43, 38, 33, 28, 23, 18, 13, 8, 6, 5, 5, 5, 4, 4, 4, 3, 3, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1]
-class InGame:
+class InGame(Screen):
def __init__(self, players, screen):
self.players = players
self.screen = screen