aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/BehaviorScript.h
diff options
context:
space:
mode:
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