]> git.tdb.fi Git - libs/game.git/blobdiff - source/game/component.h
Adjust component ticking
[libs/game.git] / source / game / component.h
index 6914c15282383a004b09117875e191dd56f6a6cd..6b49dd19e8c6e3f64da05ceb550616d1e2c31624 100644 (file)
@@ -18,10 +18,6 @@ public:
        virtual ~Component() = default;
 
        Handle<Entity> get_entity() const { return entity; }
-
-       virtual void pre_tick() { }
-       virtual void tick(Time::TimeDelta) { }
-       virtual void post_tick() { }
 };
 
 } // namespace Msp::Game