blob: 43ba1b212f8ab714d6c75dbbaea52c18142976ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
using UnityEngine;
using System.Collections;
namespace BehaviorDesigner.Runtime
{
[System.Serializable]
public class SharedBool : SharedVariable<bool>
{
public static implicit operator SharedBool(bool value) { return new SharedBool { mValue = value }; }
}
}
|