summaryrefslogtreecommitdiffstats
path: root/src/WorldStorage/EnchantmentSerializer.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-08-29Force all headers other than "Globals.h" to be included with relative paths (#4269)peterbell101-1/+1
Closes #4236 CMake now creates a header file in the build directory under the path "include/Globals.h" which just includes "src/Globals.h" with an absolute path. Then instead of adding "src/" to the include directories, it adds "include/". #include "Globals.h" still works by including the build generated file and any other src-relative path will not work.
2016-02-05Bulk clearing of whitespaceLogicParrot1-7/+7
2015-05-19Make -Werror disabling file onlytycho1-3/+3
Ad fix a load of warnings
2015-05-09CheckBasicStyle: checks spaces around * and &.Mattes D1-2/+2
2014-01-19Switched EnchantmentSerilizer to namespaceTycho1-2/+3
2014-01-19Spilt Writing of Enchantments to seperate classTycho1-0/+87
Created a new class cEnchantmentSerializer to serilize Enchantments to NBT. This breaks a dependecy chain between cChunkGenerator and cWorld. cEnchantmentSerializer is seperate from NBTWriter as it needs to access private members of cEnchantments so having it seperate reduces the spread of the frein modifier