aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/BehaviorScript.h
blob: 6b1fec7ba4d4fcbf80abdd55f67c9c345a678d0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#pragma once

#include <memory>

#include "../Component.h"

namespace crepe {

class ScriptSystem;
class ComponentManager;
class Script;

class BehaviorScript : public Component {
protected:
	friend class crepe::ComponentManager;
	using Component::Component;

public:
	virtual ~BehaviorScript() = default;

public:
	template <class T>
	BehaviorScript & set_script();

protected:
	friend class crepe::ScriptSystem;
	std::unique_ptr<Script> script = nullptr;
};

} // namespace crepe

#include "BehaviorScript.hpp"