This repository has been archived on 2023-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
Blarg.GameFramework/Game.Core/GameApp.cs

21 lines
354 B
C#
Raw Permalink Normal View History

using System;
2013-08-18 18:03:28 -04:00
using System.Text;
using PortableGL;
using Blarg.GameFramework;
using Blarg.GameFramework.Graphics;
2013-08-18 14:20:42 -04:00
using Blarg.GameFramework.Graphics.Helpers;
using Blarg.GameFramework.Support;
namespace Game
{
public class GameApp : BasicGameApp
{
public override void OnLoad()
{
base.OnLoad();
StateManager.Push<TestGameState>();
}
}
}