diff --git a/main.py b/main.py index 8196614..4cd4b2c 100644 --- a/main.py +++ b/main.py @@ -46,6 +46,7 @@ if __name__ == "__main__": pygame.display.update() + # ============== # # === EVENTS === # # ============== # diff --git a/project_constants.py b/project_constants.py index 9a48563..43f6b2b 100644 --- a/project_constants.py +++ b/project_constants.py @@ -20,4 +20,4 @@ SCREEN = pygame.display.set_mode\ ) ) -ASSET_BACKGROUND = pygame.image.load('resources/assets/background.png') \ No newline at end of file +ASSET_BACKGROUND = pygame.image.load('resources/assets/grid.png') diff --git a/resources/assets/background.png b/resources/assets/background.png deleted file mode 100644 index 70f15f7..0000000 Binary files a/resources/assets/background.png and /dev/null differ diff --git a/resources/assets/blue_tile.png b/resources/assets/blue_tile.png new file mode 100644 index 0000000..4e2f7e6 Binary files /dev/null and b/resources/assets/blue_tile.png differ diff --git a/resources/assets/green_tile.png b/resources/assets/green_tile.png new file mode 100644 index 0000000..c4be35e Binary files /dev/null and b/resources/assets/green_tile.png differ diff --git a/resources/assets/grid.png b/resources/assets/grid.png new file mode 100644 index 0000000..4bcf5e7 Binary files /dev/null and b/resources/assets/grid.png differ diff --git a/resources/assets/hex_mine.png b/resources/assets/hex_mine.png new file mode 100644 index 0000000..9774e4d Binary files /dev/null and b/resources/assets/hex_mine.png differ diff --git a/resources/assets/pen_mine.png b/resources/assets/pen_mine.png new file mode 100644 index 0000000..3fc4dcc Binary files /dev/null and b/resources/assets/pen_mine.png differ diff --git a/resources/assets/sapper.png b/resources/assets/sapper.png new file mode 100644 index 0000000..ba61061 Binary files /dev/null and b/resources/assets/sapper.png differ diff --git a/resources/assets/white_tile.png b/resources/assets/white_tile.png new file mode 100644 index 0000000..1e18391 Binary files /dev/null and b/resources/assets/white_tile.png differ