mirror of
https://github.com/NoelFB/blah.git
synced 2025-07-04 20:25:26 +08:00
Simplify folder sturcture + String refactor
1) Over time the total amount of files has decreased, and so it made sense to just simplify the folder structure and remove all of the subfolders. 2) Refactor the String class to utilize the existing Vector and StackVector classes instead of managing everything itself.
This commit is contained in:
@ -1,27 +1,22 @@
|
||||
#pragma once
|
||||
|
||||
#include "blah/common.h"
|
||||
#include "blah/app.h"
|
||||
#include "blah/filesystem.h"
|
||||
#include "blah/time.h"
|
||||
#include "blah/input.h"
|
||||
#include "blah/stream.h"
|
||||
#include "blah/graphics.h"
|
||||
|
||||
#include "blah/containers/vector.h"
|
||||
#include "blah/containers/stackvector.h"
|
||||
#include "blah/containers/str.h"
|
||||
|
||||
#include "blah/drawing/batch.h"
|
||||
#include "blah/drawing/spritefont.h"
|
||||
#include "blah/drawing/subtexture.h"
|
||||
|
||||
#include "blah/images/aseprite.h"
|
||||
#include "blah/images/font.h"
|
||||
#include "blah/images/image.h"
|
||||
#include "blah/images/packer.h"
|
||||
|
||||
#include "blah/math/calc.h"
|
||||
#include "blah/math/spatial.h"
|
||||
#include "blah/math/color.h"
|
||||
#include "blah/math/ease.h"
|
||||
#include "blah_app.h"
|
||||
#include "blah_aseprite.h"
|
||||
#include "blah_batch.h"
|
||||
#include "blah_calc.h"
|
||||
#include "blah_color.h"
|
||||
#include "blah_common.h"
|
||||
#include "blah_ease.h"
|
||||
#include "blah_filesystem.h"
|
||||
#include "blah_font.h"
|
||||
#include "blah_graphics.h"
|
||||
#include "blah_image.h"
|
||||
#include "blah_input.h"
|
||||
#include "blah_packer.h"
|
||||
#include "blah_spatial.h"
|
||||
#include "blah_spritefont.h"
|
||||
#include "blah_stackvector.h"
|
||||
#include "blah_string.h"
|
||||
#include "blah_stream.h"
|
||||
#include "blah_subtexture.h"
|
||||
#include "blah_time.h"
|
||||
#include "blah_vector.h"
|
Reference in New Issue
Block a user