aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/BehaviorScript.h
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-12-22 17:28:02 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2024-12-22 17:28:02 +0100
commit73dea702bdedf48a2d2d26e7922b5ee935063cfd (patch)
tree4018d4185f5ba0c9e1529beecdc3146d626c2a63 /src/crepe/api/BehaviorScript.h
parent0dae96161a99158815a8075b5c405a35b0939936 (diff)
reset BehaviorScript to master
Diffstat (limited to 'src/crepe/api/BehaviorScript.h')
-rw-r--r--src/crepe/api/BehaviorScript.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/crepe/api/BehaviorScript.h b/src/crepe/api/BehaviorScript.h
index 52a7cbf..3909b96 100644
--- a/src/crepe/api/BehaviorScript.h
+++ b/src/crepe/api/BehaviorScript.h
@@ -33,11 +33,6 @@ protected:
//! Only ComponentManager is allowed to instantiate BehaviorScript
friend class ComponentManager;
- BehaviorScript(const BehaviorScript &);
- BehaviorScript(BehaviorScript &&);
- BehaviorScript & operator = (const BehaviorScript &);
- BehaviorScript & operator = (BehaviorScript &&);
-
public:
/**
* \brief Set the concrete script of this component
@@ -53,7 +48,6 @@ public:
BehaviorScript & set_script(Args &&... args);
protected:
- std::string name = "unknown script";
//! Script instance
std::unique_ptr<Script> script = nullptr;
//! ScriptSystem needs direct access to the script instance