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/script.py
2019-12-04 18:17:52 +01:00

5 lines
110 B
Python

class Script:
def __init__(self, parent, func):
super().__init__(parent)
self.func = func