And I forgot to rename this, I'm really stupid

This commit is contained in:
2025-06-20 19:36:08 +01:00
parent 6c6c1af329
commit bc890d8a67

42
game.py Normal file
View File

@ -0,0 +1,42 @@
from PIL import Imgae
import logging
import pygame
import gameUtils
import NoPELib
class Game(gameUtils.Game):
def __init__(self, *args, **kwargs):
"""
Ran when the game starts.
You have access to the following variables:
self.surf (pygame.Surface): This is the surface you draw onto.
self.pm (NoPELib.PlayerManager): This is where your players are stored.
self.cfg (dict): Everything from the `game.toml` file. You can access it like this: self.details['title']
"""
# Don't remove this. It does important things. :3
super().__init__(*args, **kwargs)
def onEvent(self, event):
"""
Ran when an event is fired.
Args:
event (pygame.Event): The event that was fired.
"""
pass
def update(self):
"""
Ran once per frame, put your drawing code and any
game logic that should be ran once per frame in here.
"""
pass
def close(self):
"""
Ran when the game closes.
"""
pass