refactoring

This commit is contained in:
Michele Scandura 2020-11-04 09:59:58 +00:00
parent 5ce6580c6f
commit c293490995
5 changed files with 8 additions and 10 deletions

View file

@ -1,13 +1,13 @@
using System;
namespace MyGame
namespace Sledgemapper
{
public static class Program
{
[STAThread]
static void Main()
{
using (var game = new Game1())
using (var game = new Sledgemapper())
game.Run();
}
}