Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
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();
        }
    }
}