diff options
author | chai <chaifix@163.com> | 2019-08-14 22:50:43 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2019-08-14 22:50:43 +0800 |
commit | 15740faf9fe9fe4be08965098bbf2947e096aeeb (patch) | |
tree | a730ec236656cc8cab5b13f088adfaed6bb218fb /Runtime/Export/UnityEngineBehaviour.txt |
Diffstat (limited to 'Runtime/Export/UnityEngineBehaviour.txt')
-rw-r--r-- | Runtime/Export/UnityEngineBehaviour.txt | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/Runtime/Export/UnityEngineBehaviour.txt b/Runtime/Export/UnityEngineBehaviour.txt new file mode 100644 index 0000000..d0e1304 --- /dev/null +++ b/Runtime/Export/UnityEngineBehaviour.txt @@ -0,0 +1,31 @@ +C++RAW + + +#include "UnityPrefix.h" +#include "Configuration/UnityConfigure.h" +#include "Runtime/Scripting/ScriptingUtility.h" +#include "Runtime/Mono/MonoBehaviour.h" + +using namespace Unity; +using namespace std; + +CSRAW +using System; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using System.Collections; +using UnityEngineInternal; + +namespace UnityEngine +{ + +// Behaviours are Components that can be enabled or disabled. +CSRAW +NONSEALED_CLASS Behaviour : Component + // Enabled Behaviours are Updated, disabled Behaviours are not. + AUTO_PROP bool enabled GetEnabled SetEnabled +END + + +CSRAW } + |