1 2 3 4 5 6 7
#include "AI.h" namespace crepe { AI::AI(game_object_id_t id, float max_force) : Component(id), max_force(max_force) {} } // namespace crepe