Getting Started
using System;
using odl;
namespace TestNamespace
{
class Program
{
public static void Main(params string[] Args)
{
Graphics.Start();
Window w = new Window("Hello world!");
w.Initialize();
w.Show();
while (Graphics.CanUpdate())
{
Graphics.Update();
}
Graphics.Stop();
}
}
}
Last updated