Actually have a semi working world loader.

This commit is contained in:
2021-04-18 22:06:51 +10:00
parent 7244cde933
commit 1a2a3ae3b4
23 changed files with 451 additions and 482 deletions

6
tools/map/index.js Normal file
View File

@ -0,0 +1,6 @@
const fs = require('fs');
let buffer = "";
for(let i = 0; i < (16*16*8); i++) buffer += "0;";
fs.writeFileSync('out.txt', buffer);