Initial commit

This commit is contained in:
ljfa-ag 2015-06-19 22:28:45 +02:00
commit af7c4d9988
3 changed files with 23 additions and 0 deletions

2
.gitattributes vendored Normal file
View file

@ -0,0 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto

9
.gitignore vendored Normal file
View file

@ -0,0 +1,9 @@
*.cbp
*.depend
*.layout
*.cbtemp
/bin
/lib
/obj
/build
/doxygen/html

12
README.md Normal file
View file

@ -0,0 +1,12 @@
# libnbt++ 2 (WIP)
libnbt++ is a free C++ library for Minecraft's file format Named Binary Tag
(NBT). It can read and write compressed and uncompressed NBT files and
provides a code interface for working with NBT data.
----------
libnbt++2 is a remake of the old libnbt++ library with the goal of making it
more easily usable and fixing some problems. The old libnbt++ especially
suffered from a very convoluted syntax and boilerplate code needed to work
with NBT data.