20 lines
359 B
C#
20 lines
359 B
C#
|
using System;
|
||
|
|
||
|
namespace Primitives
|
||
|
{
|
||
|
static class Program
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Der Haupteinstiegspunkt für die Anwendung.
|
||
|
/// </summary>
|
||
|
static void Main(string[] args)
|
||
|
{
|
||
|
using (Game1 game = new Game1())
|
||
|
{
|
||
|
game.Run();
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|