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.
20 lines
467 B
C#
20 lines
467 B
C#
using System;
|
|
using DotNetCTFDumper.Utils;
|
|
|
|
namespace DotNetCTFDumper.MMFParser.EXE.Loaders.Events.Parameters
|
|
{
|
|
class AlterableValue : Short
|
|
{
|
|
|
|
public AlterableValue(ByteReader reader) : base(reader) { }
|
|
public override void Read()
|
|
{
|
|
base.Read();
|
|
}
|
|
public override string ToString()
|
|
{
|
|
return $"AlterableValue{Convert.ToChar(Value).ToString().ToUpper()}";
|
|
}
|
|
}
|
|
}
|