This repository has been archived on 2019-12-09. You can view files and clone it, but cannot push or open issues or pull requests.
pacman2/engine/components/collide_rect.py

8 lines
147 B
Python

from .component import Component
class CollideRect(Component):
def __init__(self, rect):
super().__init__()
self.rect = rect