//-----------------------------------------------------------------------------
// Program.cs
//
// Microsoft XNA Community Game Platform
// Copyright (C) Microsoft Corporation. All rights reserved.
//-----------------------------------------------------------------------------
using System;
namespace PerPixelCollision.Windows
{
///
/// The main class.
///
public static class Program
{
///
/// The main entry point for the application.
///
[STAThread]
static void Main()
{
using (var game = new PerPixelCollisionGame())
game.Run();
}
}
}