Mercurial > maze-src
diff maze.js @ 0:1eef88068f9f tip
initial commit of maze game source
| author | ferencd |
|---|---|
| date | Sun, 15 Sep 2019 11:46:47 +0200 |
| parents | |
| children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/maze.js Sun Sep 15 11:46:47 2019 +0200 @@ -0,0 +1,11 @@ +// dummy file so that the editor does not complain +var w = 0; +var h = 0; +var maze = [[]]; +var doors=[]; +var torch_placements=[]; +var walkers=[]; +var walkers_count = 1; +var food=[]; +var weapon_locations = []; +var loot = [];
