Cosmos/source2/IL2PCU/Cosmos.IL2CPU/MethodInfo.cs
2009-08-23 20:30:02 +00:00

18 lines
299 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.IL2CPU
{
public class MethodInfo
{
public readonly UInt32 UID;
public MethodInfo( UInt32 aUID )
{
UID = aUID;
}
}
}