9 lines
160 B
Python
9 lines
160 B
Python
import pygame
|
|
|
|
|
|
class GameObject:
|
|
def draw(self, surface: pygame.Surface) -> None:
|
|
pass
|
|
|
|
def update(self, user_input: int) -> None:
|
|
pass |