8 lines
173 B
C#
8 lines
173 B
C#
namespace OpenTKCourse {
|
|
class Program {
|
|
static void Main(string[] args) {
|
|
using Game game = new Game();
|
|
game.Run();
|
|
}
|
|
}
|
|
} |