home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2006 January / Gamestar_80_2006-01_dvd.iso / Dema / Civilization4 / data1.cab / Civ4DemoComponent / Assets / Python / Screens / CvScreen.py < prev    next >
Encoding:
Python Source  |  2005-11-09  |  630 b   |  37 lines

  1. # Sid Meier's Civilization 4
  2. # Copyright Firaxis Games 2005
  3. #
  4. # CvScreen - Base class for all of the Screens
  5.  
  6. from CvPythonExtensions import *
  7. import CvUtil
  8.  
  9. class CvScreen:
  10.     "Base Screen"
  11.     
  12.     def __init__(self):
  13.         return
  14.     
  15.     def getScreen(self):
  16.         return -1
  17.     
  18.     def hideScreen(self):
  19.         return
  20.     
  21.     # Screen construction function
  22.     def showScreen(self, iCategory):
  23.         return
  24.     
  25.     # returns a unique ID for a widget in this screen
  26.     def getNextWidgetName(self):
  27.         return
  28.     
  29.     # Will handle the input for this screen...
  30.     def handleInput (self, inputClass):
  31.         return 0
  32.     
  33.     def update(self, fDelta):
  34.         return
  35.  
  36.  
  37.