8 lines
147 B
Python
8 lines
147 B
Python
from .component import Component
|
|
|
|
|
|
class CollideRect(Component):
|
|
def __init__(self, rect):
|
|
super().__init__()
|
|
self.rect = rect
|