aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/AI.cpp
blob: 6b63216acb9597188b4200f7386edf75c54d14c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "AI.h"

namespace crepe {

AI::AI(game_object_id_t id, double mass, double max_speed, double max_force)
	: Component(id),
	  mass(mass),
	  max_speed(max_speed),
	  max_force(max_force) {}

} // namespace crepe