view gamelib/icons.py @ 139:1d73de63bd71

Add basic game over screen
author Neil Muller <drnlmuller@gmail.com>
date Wed, 02 Sep 2009 22:48:39 +0000
parents a7d803275a23
children fe1e9c18d4d7
line wrap: on
line source

"""Constant definitions for the icons we use"""

from pgu.gui import Image

import imagecache

KILLED_FOX = Image(imagecache.load_image('icons/killed_fox.png'))
CHKN_ICON = Image(imagecache.load_image('icons/chkn.png'))
EMPTY_NEST_ICON = Image(imagecache.load_image('sprites/emptynest.png'))
CHKN_NEST_ICON = Image(imagecache.load_image('sprites/chknnest.png'))