mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
17 lines
290 B
C#
17 lines
290 B
C#
using System;
|
|
using IL2CPU.API;
|
|
|
|
namespace GuessKernel
|
|
{
|
|
[Plug(Target = typeof(global::System.Environment))]
|
|
class EnvironmentImpl
|
|
{
|
|
public static int TickCount
|
|
{
|
|
get
|
|
{
|
|
return GuessOS.Tick;
|
|
}
|
|
}
|
|
}
|
|
}
|