X-Git-Url: https://git.ctpug.org.za/?a=blobdiff_plain;f=koperkapel%2Fgamelib%2Ftiles.py;h=69ffbe83e901f174264eea8d37e086c8b36193bc;hb=31ec0ae3dc918618849b41c4df6b064d6a47c69f;hp=66a74ff05eee0cf6c6aee259f041762e7d31b94a;hpb=0ea7bed7719ea87b9a57843f027a834a1b6e89a9;p=koperkapel.git diff --git a/koperkapel/gamelib/tiles.py b/koperkapel/gamelib/tiles.py index 66a74ff..69ffbe8 100644 --- a/koperkapel/gamelib/tiles.py +++ b/koperkapel/gamelib/tiles.py @@ -60,6 +60,16 @@ class Wall(RandomizedTile): class Underground(RandomizedTile): IMGDIR = "underground" +class Grate(Tile): + IMG = os.path.join('grate', 'grate') + TILESET = 'bunker' + + +class Exit(Tile): + IMG = os.path.join('exit', 'exit') + TILESET = 'bunker' + + class Tunnel(OrientatedTile): @classmethod