Mother2GbaTranslation/tools/ScriptTool/CodeByte.cs

19 lines
320 B
C#
Raw Permalink Normal View History

2015-03-16 04:16:12 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ScriptTool
{
2015-03-20 15:45:23 +00:00
public class CodeByte : CodeString
2015-03-16 04:16:12 +00:00
{
public byte Value { get; set; }
public CodeByte(byte value)
{
Value = value;
}
}
}