view skaapsteker/sprites/items.py @ 189:9d08f99b5ddf

Add npcs to gamestate. Update gamestate. Pass world around a bit. Some other stuff.
author Simon Cross <hodgestar@gmail.com>
date Wed, 06 Apr 2011 21:14:26 +0200
parents 663bdac80299
children 993f4f55eb93
line wrap: on
line source

from base import Item


class TeaCup(Item):
    image_file = 'teacup_empty.png'


class TeaLeaf(Item):
    image_file = 'tealeaf.png'


class TeaPot(Item):
    image_file = 'teapot.png'