diff options
Diffstat (limited to 'Assets/ThirdParty/Behavior Designer/Runtime/Basic Tasks/Network/IsServer.cs')
-rw-r--r-- | Assets/ThirdParty/Behavior Designer/Runtime/Basic Tasks/Network/IsServer.cs | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/Assets/ThirdParty/Behavior Designer/Runtime/Basic Tasks/Network/IsServer.cs b/Assets/ThirdParty/Behavior Designer/Runtime/Basic Tasks/Network/IsServer.cs deleted file mode 100644 index 737b6f32..00000000 --- a/Assets/ThirdParty/Behavior Designer/Runtime/Basic Tasks/Network/IsServer.cs +++ /dev/null @@ -1,12 +0,0 @@ -using UnityEngine.Networking;
-
-namespace BehaviorDesigner.Runtime.Tasks.Basic.UnityNetwork
-{
- public class IsServer : Conditional
- {
- public override TaskStatus OnUpdate()
- {
- return NetworkServer.active ? TaskStatus.Success : TaskStatus.Failure;
- }
- }
-}
\ No newline at end of file |