forked from hipstercat/giantsd
7 lines
112 B
Python
7 lines
112 B
Python
|
from giants.entity import Entity
|
||
|
|
||
|
|
||
|
class Projectile(Entity):
|
||
|
def __init__(self):
|
||
|
super().__init__()
|