You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
MOOS/CosmosKernel1/Clock.cs

23 lines
461 B
C#

using Cosmos.System.Graphics;
using System;
using System.Drawing;
namespace CosmosKernel1
{
class Clock : App
{
public Clock(uint width, uint height, uint x = 0, uint y = 0) : base(width, height, x, y)
{
name = "Clock";
}
public override void _Update()
{
}
void drawHand(Canvas vMWareSVGAII, uint color, int xStart, int yStart, int angle, int radius)
{
}
}
}