pneuma-pygame/game/entities/entity.py

10 lines
156 B
Python
Raw Normal View History

import pygame
from math import sin
import random
class Entity():
def __init__(self, groups, position, sprite_type):
super().__init__(groups)