mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
19 lines
452 B
C#
19 lines
452 B
C#
using IL2CPU.API.Attribs;
|
|
using System;
|
|
|
|
namespace Cosmos.Core
|
|
{
|
|
public static unsafe class ObjUtilities
|
|
{
|
|
public static uint GetPointer(Delegate aVal)
|
|
{
|
|
return (uint)aVal.GetHashCode();
|
|
}
|
|
|
|
[PlugMethod(PlugRequired = true)]
|
|
public static uint GetPointer(Object aVal) { return 0; }
|
|
|
|
[PlugMethod(PlugRequired = true)]
|
|
public static uint GetEntryPoint() { return 0; }
|
|
}
|
|
}
|