This repository has been archived on 2026-05-22. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Tetrahedrons/Platformer/Driver.cs

11 lines
215 B
C#

namespace Platformer
{
internal static class Driver
{
public static void Main(string[] args)
{
using (var pw = new PlatformWindow())
pw.Run();
}
}
}