home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2006 January / Gamestar_80_2006-01_dvd.iso / Dema / Civilization4 / data1.cab / Civ4DemoComponent / Assets / Python / EntryPoints / CvScreenUtilsInterface.py < prev    next >
Encoding:
Text File  |  2005-11-09  |  498 b   |  19 lines

  1. # Sid Meier's Civilization 4
  2. # Copyright Firaxis Games 2005
  3. #
  4. # CvScreenUtilsInterface.py
  5. #
  6. # * This file stores the version of CvScreenUtils that is active
  7. # * It is called from CvScreensInterface
  8. # * When modding, this file should be replaced with one that has
  9. #   screenUtils pointing to the mods <Mod>ScreenUtils
  10. #
  11. # No other modules should import this
  12. #
  13. import CvScreenUtils
  14.  
  15. normalScreenUtils = CvScreenUtils.CvScreenUtils()
  16.  
  17. def getScreenUtils():
  18.     return normalScreenUtils
  19.