Files

22 lines
538 B
C#
Raw Permalink Normal View History

using System.Collections.Generic;
using Jm1RecheckDiePoint = JM1.JM1Params.RecheckDiePoint;
namespace MainShell.Vision
{
/// <summary>
/// 复检 Die Map。
/// </summary>
public class RecheckDieMap : Dictionary<int, Dictionary<int, Jm1RecheckDiePoint>>
{
public RecheckDieMap()
{
}
public RecheckDieMap(IDictionary<int, Dictionary<int, Jm1RecheckDiePoint>> source)
: base(source ?? new Dictionary<int, Dictionary<int, Jm1RecheckDiePoint>>())
{
}
}
}