moved stuff around

This commit is contained in:
Bitl 2020-07-07 16:45:58 -07:00
parent 4d4f6f14e2
commit 570d9c19a8
6 changed files with 6 additions and 6 deletions

View File

@ -3,8 +3,7 @@ namespace NovetusLauncher
{ {
class LocalPaths class LocalPaths
{ {
//plugins???? UNCOMMENT. //public static readonly string PluginPath = GlobalPaths.BasePath + "\\plugins";
//public static readonly string BasePath = RootPath.Replace(@"\", @"\\");
//assetcache //assetcache
public static readonly string DirFonts = "\\fonts"; public static readonly string DirFonts = "\\fonts";

View File

@ -134,14 +134,14 @@
<Compile Include="CharacterCustomization\CharacterCustomization.Designer.cs"> <Compile Include="CharacterCustomization\CharacterCustomization.Designer.cs">
<DependentUpon>CharacterCustomization.cs</DependentUpon> <DependentUpon>CharacterCustomization.cs</DependentUpon>
</Compile> </Compile>
<Compile Include="Classes\AddonLoader.cs" /> <Compile Include="Classes\Launcher\AddonLoader.cs" />
<Compile Include="Classes\CharCustom\IconLoader.cs" /> <Compile Include="Classes\CharCustom\IconLoader.cs" />
<Compile Include="Classes\LocalPaths.cs" /> <Compile Include="Classes\LocalPaths.cs" />
<Compile Include="Classes\SDK\Downloader.cs" /> <Compile Include="Classes\SDK\Downloader.cs" />
<Compile Include="Classes\SDK\RobloxXMLLocalizer.cs" /> <Compile Include="Classes\SDK\RobloxXMLLocalizer.cs" />
<Compile Include="Classes\SplashLoader.cs" /> <Compile Include="Classes\Launcher\SplashLoader.cs" />
<Compile Include="Classes\WinForms\FormExt.cs" /> <Compile Include="Classes\WinForms\FormExt.cs" />
<Compile Include="Classes\LocalVars.cs" /> <Compile Include="Classes\Launcher\LocalVars.cs" />
<Compile Include="Classes\WinForms\TabControlWithoutHeader.cs"> <Compile Include="Classes\WinForms\TabControlWithoutHeader.cs">
<SubType>Component</SubType> <SubType>Component</SubType>
</Compile> </Compile>

View File

@ -7,6 +7,7 @@
* To change this template use Tools | Options | Coding | Edit Standard Headers. * To change this template use Tools | Options | Coding | Edit Standard Headers.
*/ */
using System; using System;
using System.Linq;
using System.Windows.Forms; using System.Windows.Forms;
namespace NovetusLauncher namespace NovetusLauncher
@ -29,6 +30,7 @@ namespace NovetusLauncher
{ {
Application.EnableVisualStyles(); Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false); Application.SetCompatibleTextRenderingDefault(false);
LauncherFuncs.ReadInfoFile(GlobalPaths.ConfigDir + "\\" + GlobalVars.InfoName); LauncherFuncs.ReadInfoFile(GlobalPaths.ConfigDir + "\\" + GlobalVars.InfoName);
LauncherFuncs.Config(GlobalPaths.ConfigDir + "\\" + GlobalVars.ConfigName, false); LauncherFuncs.Config(GlobalPaths.ConfigDir + "\\" + GlobalVars.ConfigName, false);
if (args.Length == 0) if (args.Length == 0)
@ -56,6 +58,5 @@ namespace NovetusLauncher
} }
} }
} }
} }
} }