repo.or.cz
/
tastes.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
tasting on MonoGame
[tastes.git]
/
Platformer2D
/
Platformer2D.DesktopGL
/
Program.cs
blob
a7e5a51b3465230548edac9307860d2f17aaa45c
1
using
System
;
2
3
namespace
Platformer2D
.
DesktopGL
4
{
5
public static class
Program
6
{
7
[
STAThread
]
8
static void
Main
()
9
{
10
using
(
var
game
=
new
PlatformerGame
())
11
game
.
Run
();
12
}
13
}
14
}