Cosmos/source2/IL2PCU/Cosmos.IL2CPU/PlugInfo.cs
mterwoord_cp bee17e9b02
2009-09-12 12:21:34 +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;
}
}
}