Created
August 18, 2015 23:39
-
-
Save GrantByrne/056b2bac168e0fe5001b to your computer and use it in GitHub Desktop.
Otter2D Getting Started
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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