Room Designer:

* New Project added.

Mud HUB:
 * Moved ExecuteApp method from frmMain.cs to Program.cs
This commit is contained in:
Scionwest_cp 2009-11-07 10:29:00 -08:00
parent 03340af1ff
commit 2a8c023aca
15 changed files with 728 additions and 60 deletions

19
RoomDesigner/frmMain.cs Normal file
View file

@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace RoomDesigner
{
public partial class frmMain : Form
{
public frmMain()
{
InitializeComponent();
}
}
}