Mother2GbaTranslation/tools/ScriptTool/CodeReference.cs

19 lines
336 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ScriptTool
{
public class CodeReference : CodeString
{
public int Address { get; set; }
public CodeReference(int address)
{
Address = address;
}
}
}