Mother2GbaTranslation/tools/ScriptTool/CodeReference.cs

19 lines
336 B
C#
Raw 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 CodeReference : CodeString
2015-03-16 04:16:12 +00:00
{
public int Address { get; set; }
public CodeReference(int address)
{
Address = address;
}
}
}