aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/BehaviorScript.h
blob: e9542c10f47492748b9a02c8f1ea2bb9ac29b3bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once

#include "../Script.h"
#include "../Component.h"

namespace crepe::api {

class BehaviorScript : public Script, public Component {
	// only allow ComponentManager to instantiate scripts
	friend class ComponentManager;

protected:
	BehaviorScript();
};

}