You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
461 B
C#

using NetMFAPatcher.Utils;
namespace NetMFAPatcher.MMFParser.ChunkLoaders.Events.Parameters
{
class Float : ParameterCommon
{
public float Value;
public Float(ByteIO reader) : base(reader) { }
public override void Read()
{
Value = Reader.ReadSingle();
}
public override string ToString()
{
return $"{this.GetType().Name} value: {Value}";
}
}
}