12 lines
216 B
C#
12 lines
216 B
C#
namespace ARMeilleure.Translation
|
|
{
|
|
class DelegateInfo
|
|
{
|
|
public nint FuncPtr { get; private set; }
|
|
public DelegateInfo(nint funcPtr)
|
|
{
|
|
FuncPtr = funcPtr;
|
|
}
|
|
}
|
|
}
|