Projektdateien hinzufügen.

This commit is contained in:
2026-04-15 15:25:29 +02:00
parent c8e17d74de
commit edbed97de6
6 changed files with 675 additions and 0 deletions

13
Program.cs Normal file
View File

@@ -0,0 +1,13 @@
using osu.Framework;
using osu.Framework.Platform;
namespace HillLike;
public static class Program
{
public static void Main()
{
using GameHost host = Host.GetSuitableDesktopHost("hill-like");
host.Run(new HillLikeGame());
}
}