view gamelib/cursors.py @ 256:bca2f4396de8

removed unused cursors / generated sprites
author Adrianna Pińska <adrianna.pinska@gmail.com>
date Sat, 05 Sep 2009 12:51:20 +0000
parents fa57868123d7
children d564ae258471
line wrap: on
line source

"""Data for the in game cursors"""

import pygame

import data


cursors = {
        'arrow' : pygame.cursors.arrow,
        'select' : pygame.cursors.broken_x,
        }

for tag, filename in [
        ('chicken', 'cursors/chkn.xbm'),
        ]:
    path = data.filepath(filename)
    # pygame 1.8 needs the file twice to do the right thing
    # XXX: check behaviour with pygame 1.9
    cursors[tag] = pygame.cursors.load_xbm(path, path)