11 lines
215 B
C#
11 lines
215 B
C#
namespace Platformer
|
|
{
|
|
internal static class Driver
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
using (var pw = new PlatformWindow())
|
|
pw.Run();
|
|
}
|
|
}
|
|
} |