aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/BehaviorScript.cpp
blob: c5fecef4a38742a93bce374e162435b2780935ae (plain)
1
2
3
4
5
6
7
8
#include "BehaviorScript.h"
#include "Component.h"

using namespace crepe;

BehaviorScript::BehaviorScript(game_object_id_t id, ComponentManager & mgr)
	: Component(id),
	  component_manager(mgr) {}