15 lines
450 B
C#
15 lines
450 B
C#
using MonoGameBlank2dStartKit.Core;
|
|
|
|
internal class Program
|
|
{
|
|
/// <summary>
|
|
/// The main entry point for the application.
|
|
/// This creates an instance of your game and calls it's Run() method
|
|
/// </summary>
|
|
/// <param name="args">Command-line arguments passed to the application.</param>
|
|
private static void Main(string[] args)
|
|
{
|
|
using var game = new MonoGameBlank2dStartKitGame();
|
|
game.Run();
|
|
}
|
|
} |