Mother2GbaTranslation/tools/ScriptTool/CodeByte.cs

19 lines
320 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ScriptTool
{
public class CodeByte : CodeString
{
public byte Value { get; set; }
public CodeByte(byte value)
{
Value = value;
}
}
}