spine-runtimes/spine-xna/example/src/ExampleProgram.cs
NathanSweet 36000e3c55 Updated to v3.5 (merge dev branch).
# Conflicts:
#	spine-c/src/spine/AnimationState.c
2016-11-15 23:10:23 +01:00

26 lines
619 B
C#

using System;
namespace Spine {
#if WINDOWS || XBOX
static class ExampleProgram {
static void Main (string[] args) {
using (Example game = new Example()) {
game.Run();
}
}
}
#elif WINDOWS_STOREAPP
public static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
static void Main()
{
var factory = new MonoGame.Framework.GameFrameworkViewSource<Example>();
Windows.ApplicationModel.Core.CoreApplication.Run(factory);
}
}
#endif
}