Initial Commit

This commit is contained in:
plane000
2014-02-20 20:21:45 +00:00
committed by benkyd
parent 81e77e6915
commit 4541250a04
31 changed files with 1553 additions and 0 deletions

13
App1/Program.cs Normal file
View File

@@ -0,0 +1,13 @@
using System;
namespace App1 {
class Program {
static void Main(string[] args) {
Console.ForegroundColor = ConsoleColor.White;
Console.BackgroundColor = ConsoleColor.Black;
var i = new LogIn(); //calls login file LogIn.cs
i.start();
}
}
}