view gamelib/icons.py @ 360:b4ead8d2b776

Add bounds checking to animation drawing loop
author Neil Muller <drnlmuller@gmail.com>
date Mon, 07 Sep 2009 11:20:52 +0000
parents fe1e9c18d4d7
children 7b5e4b6dd889
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/nest.png'))

def animal_icon(animal):
    return Image(animal.image_left)