Skip to content

Instantly share code, notes, and snippets.

@GrantByrne
Created August 18, 2015 23:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GrantByrne/056b2bac168e0fe5001b to your computer and use it in GitHub Desktop.
Save GrantByrne/056b2bac168e0fe5001b to your computer and use it in GitHub Desktop.
Otter2D Getting Started
using Otter;
namespace TumblrGame
{
class Program
{
static void Main(string[] args)
{
Game game = new Game("Tumblr Game", 1000, 750);
game.Start();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment