8 lines
240 B (Stored with Git LFS)
C#
8 lines
240 B (Stored with Git LFS)
C#
namespace BehaviorDesigner.Runtime
|
|
{
|
|
[System.Serializable]
|
|
public class SharedFloat : SharedVariable<float>
|
|
{
|
|
public static implicit operator SharedFloat(float value) { return new SharedFloat { Value = value }; }
|
|
}
|
|
} |