Refactor almost finished.

This commit is contained in:
2021-09-19 22:49:52 -07:00
parent a2c269ab33
commit b3e06a3837
25 changed files with 56 additions and 31 deletions

View File

@ -9,6 +9,7 @@
#include "../libs.h"
#include "spritebatch.h"
#include "tileset.h"
#include "../util/math.h"
/** Which is the first character within the font tilemap */
#define BITMAP_FONT_CHAR_START 33

View File

@ -11,6 +11,7 @@
#include "primitive.h"
#include "primitives/quad.h"
#include "../util/mem.h"
#include "../util/math.h"
/** Which character (ASCII) to start the font from */
#define FONT_FIRST_CHAR 32

View File

@ -5,6 +5,7 @@
#pragma once
#include "../libs.h"
#include "../util/math.h"
#include "primitive.h"
#include "primitives/quad.h"