From 81e45a046d22c2312301f16e8b80770d63e8c099 Mon Sep 17 00:00:00 2001 From: Brosef Date: Sun, 15 Jun 2025 19:31:09 +0100 Subject: [PATCH] Initial commit --- PDOLib/__init__.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/PDOLib/__init__.py b/PDOLib/__init__.py index e69de29..2af6c2b 100644 --- a/PDOLib/__init__.py +++ b/PDOLib/__init__.py @@ -0,0 +1,14 @@ +from NoPELib.expansion import Expansion +from NoPELib.expansion import PlayerExpansion + +class PDO(Expansion): + ID = 'PDO' + + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) + +class PlayerPDO(PlayerExpansion): + ID = 'PDO' + + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) \ No newline at end of file