Mother2GbaTranslation/ScriptTool/ScriptToolGui/IndexPair.cs

26 lines
539 B
C#
Raw Normal View History

2015-03-25 02:02:36 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ScriptToolGui
{
class IndexPair
2015-03-25 02:02:36 +00:00
{
public int First { get; private set; }
public int Second { get; private set; }
2015-03-25 02:02:36 +00:00
public IndexPair(int first, int second)
{
First = first;
Second = second;
}
public override string ToString()
{
return String.Format("First: {0}, Second: {1}", First, Second);
}
}
}