25 lines
527 B
C#
25 lines
527 B
C#
using System;
|
|
using System.Windows;
|
|
|
|
namespace Piston.Client
|
|
{
|
|
public static class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
var game = new GameInitializer(args);
|
|
|
|
try
|
|
{
|
|
game.TryInit();
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
MessageBox.Show($"Piston encountered an error trying to initialize the game.\n{e.Message}");
|
|
return;
|
|
}
|
|
|
|
game.RunGame();
|
|
}
|
|
}
|
|
} |