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
468 B
C#

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