Actually have a semi working world loader.

This commit is contained in:
2021-04-18 22:06:51 +10:00
parent 7b8afa20a1
commit e0b7313228
20 changed files with 448 additions and 481 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);