Create files for nbt library and a tool to use it.

These files were also used to figure out the process of building them so
their content is garbage.
BodgeMaster-unfinished
BodgeMaster 2022-06-24 09:28:17 +02:00
parent 57006a6463
commit 0c9299b21d
3 changed files with 9 additions and 0 deletions

3
src/lib/libnbt.cpp Normal file
View File

@ -0,0 +1,3 @@
int blob() {
return 1;
}

1
src/lib/libnbt.h Normal file
View File

@ -0,0 +1 @@
int blob();

5
src/tools/dumpnbt.cpp Normal file
View File

@ -0,0 +1,5 @@
#include "../lib/libnbt.h"
int main(int argc, char* argv[]) {
return blob();
}