Initial commit

This commit is contained in:
2025-06-15 19:31:11 +01:00
parent 0410767512
commit b20e046342
4 changed files with 78 additions and 0 deletions

View File

@ -0,0 +1,14 @@
from NoPELib.expansion import Expansion
from NoPELib.expansion import PlayerExpansion
class Example(Expansion):
ID = 'Example'
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
class PlayerExample(PlayerExpansion):
ID = 'Example'
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)