mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-22 05:48:37 +00:00
15 lines
563 B
C#
15 lines
563 B
C#
using System;
|
|
using IL2CPU.API.Attribs;
|
|
|
|
namespace Cosmos.Core_Plugs.System.Reflection
|
|
{
|
|
[Plug("System.Reflection.RuntimeAssembly, System.Private.CoreLib")]
|
|
class RuntimeAssemblyImpl
|
|
{
|
|
[PlugMethod(Signature = "System_Void__System_Reflection_RuntimeAssembly_GetFullName_System_Runtime_CompilerServices_QCallAssembly__System_Runtime_CompilerServices_StringHandleOnStack_")]
|
|
public static void GetFullName(object aQCallAssembly, object aStringHandleOnStack)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|