mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 21:08:51 +00:00
14 lines
322 B
C#
14 lines
322 B
C#
using IL2CPU.API.Attribs;
|
|
|
|
namespace Cosmos.Core_Plugs.System
|
|
{
|
|
[Plug("System.CLRConfig, System.Private.CoreLib")]
|
|
public static class CLRConfigImpl
|
|
{
|
|
public static bool GetBoolValue(string switchName, out bool exist)
|
|
{
|
|
exist = false;
|
|
return false;
|
|
}
|
|
}
|
|
}
|