15 lines
230 B
Python
15 lines
230 B
Python
import pygame
|
|
|
|
class Entity:
|
|
def __init__(self):
|
|
pass
|
|
|
|
def update(self) -> None:
|
|
pass
|
|
|
|
def draw(self, surface: pygame.Surface) -> None:
|
|
pass
|
|
|
|
def collide(self, entity) -> bool:
|
|
pass
|