Initial commit
This commit is contained in:
commit
af7c4d9988
3 changed files with 23 additions and 0 deletions
2
.gitattributes
vendored
Normal file
2
.gitattributes
vendored
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
# Auto detect text files and perform LF normalization
|
||||||
|
* text=auto
|
9
.gitignore
vendored
Normal file
9
.gitignore
vendored
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
*.cbp
|
||||||
|
*.depend
|
||||||
|
*.layout
|
||||||
|
*.cbtemp
|
||||||
|
/bin
|
||||||
|
/lib
|
||||||
|
/obj
|
||||||
|
/build
|
||||||
|
/doxygen/html
|
12
README.md
Normal file
12
README.md
Normal 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.
|
Loading…
Reference in a new issue