Cosmos/source2/Users/Orvid/OrvidTestOS/Plugs.cs
2011-06-13 19:54:46 +00:00

19 lines
406 B
C#

using System;
using Cosmos.IL2CPU.Plugs;
using CPUx86 = Cosmos.Compiler.Assembler.X86;
using CPUAll = Cosmos.Compiler.Assembler;
namespace GuessKernel
{
[Plug(Target = typeof(global::System.Environment))]
class EnvironmentImpl
{
public static int TickCount
{
get
{
return GuessOS.Tick;
}
}
}
}