Cosmos/source2/IL2CPU/Cosmos.IL2CPU/PlugInfo.cs
2010-09-04 19:07:11 +00:00

20 lines
500 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.IL2CPU {
public class PlugInfo {
/// <summary>
/// The index in mMethodsToProcess of the plug method.
/// </summary>
public readonly uint TargetUID;
public readonly Type PlugMethodAssembler;
public PlugInfo(uint aTargetUID, Type aPlugMethodAssembler) {
TargetUID = aTargetUID;
PlugMethodAssembler = aPlugMethodAssembler;
}
}
}