diff --git a/Screens/CalendarScreen.py b/Screens/CalendarScreen.py new file mode 100644 index 0000000..7b20460 --- /dev/null +++ b/Screens/CalendarScreen.py @@ -0,0 +1,18 @@ +import pygame, math +from InputManager import * +from AnimationManager import * + + +class CalendarScreen(): + + def __init__(self, windowres): + pass + + def Update(self, InputEvents): + pass + + def Draw(self, gameDisplay): + pass + + def Quit(self): + pass