From 5c1c672e018e41e5c87a0263a851684a52d9c1fb Mon Sep 17 00:00:00 2001 From: HampusM Date: Sun, 27 Mar 2022 19:21:22 +0200 Subject: refactor: replace string matrix with template matrix --- src/bootstrap.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/bootstrap.cpp') diff --git a/src/bootstrap.cpp b/src/bootstrap.cpp index 8dec609..e8315bd 100644 --- a/src/bootstrap.cpp +++ b/src/bootstrap.cpp @@ -19,8 +19,8 @@ #include "engine/data/bounds.hpp" #include "engine/data/vector2.hpp" #include "engine/engine.hpp" +#include "engine/graphics/matrix.hpp" #include "engine/graphics/scene.hpp" -#include "engine/graphics/string_matrix.hpp" #include "engine/graphics/window.hpp" #include "engine/user/cursor.hpp" #include "engine/user/input.hpp" @@ -83,7 +83,7 @@ Container bootstrap() noexcept [](const Bounds &bounds) { return std::dynamic_pointer_cast>( - std::make_shared(bounds)); + std::make_shared>(bounds)); }); container.bind().to_factory(normalize_lambda( -- cgit v1.2.3-18-g5258