Start commit. All gameplay. Textbox lib by my friend was broken(not fatal for gameplay).
15 lines
244 B
C#
15 lines
244 B
C#
using Arkanoid;
|
|
using System;
|
|
|
|
namespace Arkanoidv3._0
|
|
{
|
|
public static class Program
|
|
{
|
|
[STAThread]
|
|
static void Main()
|
|
{
|
|
using (var game = new Game1())
|
|
game.Run();
|
|
}
|
|
}
|
|
}
|