mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-11 02:31:22 +00:00
16 lines
352 B
C#
16 lines
352 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; }
|
|
}
|
|
}
|