Added demo writer interface, restructure

This commit is contained in:
Jordan Cristiano
2015-05-12 20:39:56 -04:00
parent 9834880bc5
commit 78de8690ab
14 changed files with 564 additions and 1514 deletions

View File

@ -2,6 +2,7 @@
#pragma once
#include <cstdint>
#include <cstddef>
#include <cassert>
#include "vector.h"
@ -25,8 +26,6 @@ using byte = char;
#define PLATFORM_WINDOWS_PC64 1
#endif
#define NULL nullptr
#define Assert(x) assert(x)
#define AssertMsg(x, ...) assert(x)
#define AssertMsg2(x, ...) assert(x)