Commit 23/05-24

This commit is contained in:
Hannah-Dagemark 2024-05-23 16:16:02 +02:00
commit 64261170d5
10 changed files with 89 additions and 6 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.1 KiB

After

Width:  |  Height:  |  Size: 6.7 KiB

Before After
Before After

View file

@ -157,6 +157,9 @@ class MapManager:
tile.paint_pixels(mapObject, int(colour1),int(colour2),int(colour3))
tile.findBorder(mapObject)
def re_load(self):
print("To Be Implomented")
def findTileAt(self, pos):
for x in self.tiles.keys():
tile = self.tiles[f"{x}"]
@ -192,6 +195,8 @@ class MapManager:
self.paintedTile.paint_border_pixels(mapObject)
self.paintedTile = None
print("Cleared previous tile")
def claimTileFor(self, tileID):
class Tile: