Forked from
tie / ohj1 / 2023s / ohj1ht
9 commits ahead of the upstream repository.
-
Salonen Matteus Elmeri authoredSalonen Matteus Elmeri authored
Ohjelma.cs 475 B
#region Using Statements
using System;
using System.Collections.Generic;
using System.Linq;
#endregion
namespace HyttysPeli
{
/// <summary>
/// The main class.
/// </summary>
public static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
using var game = new HyttysPeli();
game.Run();
}
}
}