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