Repository URL to install this package:
|
Version:
2023.12.1 ▾
|
namespace Gs2.Unity.Gs2StateMachine.Local.Model
{
public class FloatVariableValue : IVariableValue
{
private readonly double _value;
public FloatVariableValue(double value) {
this._value = value;
}
public VariableType Type() {
return VariableType.Float;
}
public string String() {
throw new System.NotImplementedException();
}
public long Int() {
throw new System.NotImplementedException();
}
public double Float() {
return this._value;
}
public bool Bool() {
throw new System.NotImplementedException();
}
}
}