mirror of
https://github.com/Memorix101/UnityXNA/
synced 2024-12-30 15:25:35 +01:00
29 lines
672 B
C#
29 lines
672 B
C#
|
#region File Description
|
||
|
//-----------------------------------------------------------------------------
|
||
|
// Program.cs
|
||
|
//
|
||
|
// Microsoft XNA Community Game Platform
|
||
|
// Copyright (C) Microsoft Corporation. All rights reserved.
|
||
|
//-----------------------------------------------------------------------------
|
||
|
#endregion
|
||
|
|
||
|
using System;
|
||
|
|
||
|
namespace Platformer
|
||
|
{
|
||
|
static class Program
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// The main entry point for the application.
|
||
|
/// </summary>
|
||
|
static void Main(string[] args)
|
||
|
{
|
||
|
using (PlatformerGame game = new PlatformerGame())
|
||
|
{
|
||
|
game.Run();
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|