diff options
| -rw-r--r-- | .clangd | 5 | ||||
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | dungeon.gif | bin | 0 -> 2374140 bytes | |||
| -rw-r--r-- | dungeon.png | bin | 29697 -> 0 bytes | |||
| -rw-r--r-- | flake.nix | 6 |
5 files changed, 8 insertions, 5 deletions
@@ -1,2 +1,5 @@ CompileFlags: - Add: [-Iinclude, -I../include, -std=c99, -Wall, -Wextra] + Add: + - "-Iinclude" + - "-I../include" + - "-Wall" @@ -1,3 +1,3 @@ # Dungeon W.I.P Dungeon Crawler - + diff --git a/dungeon.gif b/dungeon.gif Binary files differnew file mode 100644 index 0000000..ffce134 --- /dev/null +++ b/dungeon.gif diff --git a/dungeon.png b/dungeon.png Binary files differdeleted file mode 100644 index b0460d2..0000000 --- a/dungeon.png +++ /dev/null @@ -24,7 +24,7 @@ in { default = pkgs.stdenv.mkDerivation { - pname = "raylib-shooter"; + pname = "dungeon-crawler"; version = "0.1.0"; src = ./.; @@ -50,7 +50,7 @@ installPhase = '' mkdir -p $out/bin - cp bin/dungeon_game $out/bin/raylib-shooter + cp bin/dungeon_game $out/bin/dungeon-crawler ''; }; }); @@ -58,7 +58,7 @@ apps = forEachSystem (system: { default = { type = "app"; - program = "${self.packages.${system}.default}/bin/raylib-shooter"; + program = "${self.packages.${system}.default}/bin/dungeon-crawler"; }; }); |
