view skaapsteker/sprites/npcs.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
children 6696ffd51ac2
line wrap: on
line source

from .base import NPC


class Monk(NPC):
    image_file = 'monk/monk.png'


class Guard(NPC):
    image_file = 'guard/guard_standing.png'