Skip to content
Snippets Groups Projects

Puutarhapelin pohja.

Closed idriemla requested to merge idriemla/ohj1ht:master into main
5 files
+ 87
0
Compare changes
  • Side-by-side
  • Inline
Files
5
+ 27
0
#region Using Statements
using System;
using System.Collections.Generic;
using System.Linq;
#endregion
namespace Puutarhapeli
{
/// <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 Puutarhapeli();
game.Run();
}
}
}
\ No newline at end of file
Loading