10 lines
156 B
Python
10 lines
156 B
Python
|
import pygame
|
||
|
from math import sin
|
||
|
import random
|
||
|
|
||
|
|
||
|
class Entity():
|
||
|
|
||
|
def __init__(self, groups, position, sprite_type):
|
||
|
super().__init__(groups)
|