Renamed the library code to be in src/ to follow conventions

This commit is contained in:
2025-06-16 21:10:19 +01:00
parent 8f7b524c45
commit 1938ff4c90
5 changed files with 0 additions and 0 deletions

7
src/expansion.py Normal file
View File

@ -0,0 +1,7 @@
class Expansion:
def __init__(self, parent, globalConfig):
setattr(parent, self.__class__.ID, self)
class PlayerExpansion:
def __init__(self, player, localConfig):
pass