Class FloatArgumentValue
Namespace: Void.Minecraft.Commands.Brigadier.ArgumentTypes
Assembly: Void.Minecraft.dll
Contains a parsed single-precision floating-point argument.
public record FloatArgumentValue : IArgumentValue, IEquatable<FloatArgumentValue>Inheritance
Implements
IArgumentValue, IEquatable<FloatArgumentValue>
Inherited Members
object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString()
Constructors
FloatArgumentValue(float)
Contains a parsed single-precision floating-point argument.
public FloatArgumentValue(float Value)Parameters
Value float
The parsed value.
Properties
Value
The parsed value.
public float Value { get; init; }