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

19 lines
273 B
Python
Raw Normal View History

2019-11-23 10:46:25 +01:00
from abc import abstractmethod
class Component:
2019-12-09 12:36:42 +01:00
def __init__(self):
self.parent = None
@abstractmethod
def load(self):
pass
2019-11-23 10:46:25 +01:00
@abstractmethod
def register(self):
pass
@abstractmethod
def unregister(self):
pass