From 3d8eccd36325402eac2955621a7f2c4909da58bf Mon Sep 17 00:00:00 2001 From: Pierre Laclau Date: Wed, 24 Feb 2016 22:57:23 +0100 Subject: [PATCH] Ajout du fichier CalendarScreen.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Création du fichier et écriture de la structure de base. --- Screens/CalendarScreen.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Screens/CalendarScreen.py 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