Working on a rough demo client/server app.

This commit is contained in:
antiduh
2014-06-25 21:28:03 +00:00
parent 6dfaa54b63
commit 2e6b847434
37 changed files with 2186 additions and 3 deletions

22
TestServer/Program.cs Normal file
View File

@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace TestServer
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault( false );
Application.Run( new Form1() );
}
}
}