0

added endianness helper functions, and reading biome data directly

This commit is contained in:
Aaron Griffith
2011-03-27 06:07:43 -04:00
parent fc176206ff
commit e0e571971a
5 changed files with 49 additions and 8 deletions

View File

@@ -78,4 +78,9 @@ PyObject *chunk_render(PyObject *self, PyObject *args);
/* pull in the rendermode info */
#include "rendermodes.h"
/* in endian.c */
void init_endian();
unsigned short big_endian_ushort(unsigned short in);
unsigned int big_endian_uint(unsigned int in);
#endif /* __OVERVIEWER_H_INCLUDED__ */