Merge pull request #86 from AnonymusRaccoon/renderer

model now use shared ptr + cache system to spare memory
This commit is contained in:
Arthi-chaud
2021-06-01 14:09:53 +02:00
committed by GitHub
17 changed files with 155 additions and 69 deletions
+1 -1
View File
@@ -11,7 +11,6 @@
#include <raylib.h>
#include <string>
#include <optional>
#include "Drawables/Image.hpp"
#include "Vector/Vector2.hpp"
#include "Vector/Vector3.hpp"
#include "Controllers/Keyboard.hpp"
@@ -22,6 +21,7 @@
namespace RAY {
//! @brief Window manager
class Image;
namespace Drawables {
class IDrawable;
class ADrawable3D;