#pragma once struct Behaviour { virtual ~Behaviour() = default; virtual void update(float dt) = 0; };