aboutsummaryrefslogtreecommitdiffstats
path: root/include/components.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/components.hpp')
-rw-r--r--include/components.hpp14
1 files changed, 3 insertions, 11 deletions
diff --git a/include/components.hpp b/include/components.hpp
index 00ac8fa..2ec7a28 100644
--- a/include/components.hpp
+++ b/include/components.hpp
@@ -336,19 +336,11 @@ private:
std::string loadTexString;
Texture loadTexResult;
- float fadeIntensity;
- bool fadeIn;
public:
- RenderSystem(void)
- : fadeIntensity(1), fadeIn(true) {}
-
Texture loadTexture(const std::string& file);
- void update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) override;
-
- void fade(void);
- void fadeLock(void);
- void unfade(void);
- void unfadeLock(void);
+ void update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) override
+ { (void)en; (void)ev; (void)dt; }
+ void render(void);
};
class DialogSystem : public entityx::System<DialogSystem>, public entityx::Receiver<DialogSystem> {