aboutsummaryrefslogtreecommitdiffstats
path: root/src/components
diff options
context:
space:
mode:
authorAndy Belle-Isle <drumsetmonkey@gmail.com>2019-09-01 19:02:49 -0400
committerAndy Belle-Isle <drumsetmonkey@gmail.com>2019-09-01 19:02:49 -0400
commiteb028c960be2eeaee6e5177bc9c83a489e9209f2 (patch)
tree327579b9e7c5d3722fb67d15f3008022039f3df7 /src/components
parent5fddf26cb8bf474b6649bd727bb6493f0c2c48ba (diff)
THE CAT IS BACK
Diffstat (limited to 'src/components')
-rw-r--r--src/components/Render.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/components/Render.hpp b/src/components/Render.hpp
index 451f2d1..6cc26db 100644
--- a/src/components/Render.hpp
+++ b/src/components/Render.hpp
@@ -19,11 +19,12 @@
#define COMPONENT_RENDER_HPP_
#include "Component.hpp"
+#include "texture.hpp"
struct Render : Component<Render>, entityx::Component<Render>
{
public:
- std::string texture;
+ Texture texture;
bool visible;
Render(std::string _file) :
@@ -38,7 +39,7 @@ public:
if (tab["visible"].get_type() == sol::type::boolean)
this->visible = tab["visible"];
if (tab["texture"].get_type() == sol::type::string)
- this->texture = tab["texture"];
+ this->texture = Texture(static_cast<std::string>(tab["texture"]));
} else {
throw std::string(
"Render component table formatted incorrectly"