New Project Window

This commit is contained in:
dexyfex
2018-03-04 00:03:08 +11:00
Unverified
parent 0c558e746c
commit c093aa4736
136 changed files with 29501 additions and 20 deletions
+10 -1
View File
@@ -17,6 +17,7 @@ namespace CodeWalker
bool menumode = false;
bool explorermode = false;
bool projectmode = false;
if ((args != null) && (args.Length > 0))
{
foreach (string arg in args)
@@ -30,6 +31,10 @@ namespace CodeWalker
{
explorermode = true;
}
if (argl == "project")
{
projectmode = true;
}
}
}
@@ -47,7 +52,7 @@ namespace CodeWalker
try
{
#endif
if (menumode)
if (menumode)
{
Application.Run(new MenuForm());
}
@@ -55,6 +60,10 @@ namespace CodeWalker
{
Application.Run(new ExploreForm());
}
else if (projectmode)
{
Application.Run(new Project.ProjectForm2());
}
else
{
Application.Run(new WorldForm());