MudCompiler: No longer works. Needs to be re-wrote to support the new Alpha 2.0 engine MudDesigenr: Removed most of the forms since we are not working on it. Only form left is Project Manager, which will be removed shortly as well. MudGame: No longer runs. All of the source code was removed due to MudEngine Alpha 2.0 source changing drastically. MudEngine: Alpha 2.0 source code finally checked-in. It contains the full re-build of the engine. A lot of new abstract classes have been added.
42 lines
880 B
C#
42 lines
880 B
C#
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;
|
|
using System.IO;
|
|
using System.Threading;
|
|
|
|
namespace MudDesigner
|
|
{
|
|
public partial class frmProjectManager : Form
|
|
{
|
|
public frmProjectManager()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void RefreshProjects()
|
|
{
|
|
}
|
|
|
|
private void btnNewProject_Click(object sender, EventArgs e)
|
|
{
|
|
}
|
|
|
|
private void ShowDesigner()
|
|
{
|
|
}
|
|
|
|
private void btnClose_Click(object sender, EventArgs e)
|
|
{
|
|
Application.Exit();
|
|
}
|
|
|
|
private void editProjectToolStripMenuItem_Click(object sender, EventArgs e)
|
|
{
|
|
}
|
|
}
|
|
}
|