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/component.py

15 lines
219 B
Python

from abc import abstractmethod
class Component:
def __init__(self):
self.parent = None
@abstractmethod
def register(self):
pass
@abstractmethod
def unregister(self):
pass