15 lines
736 B
C#
15 lines
736 B
C#
using System;
|
|
using System.IO;
|
|
|
|
namespace EnvyUpdate
|
|
{
|
|
class GlobalVars
|
|
{
|
|
public static bool isMobile = false;
|
|
public static readonly string exeloc = System.Reflection.Assembly.GetEntryAssembly().Location;
|
|
public static readonly string exepath = Path.GetDirectoryName(System.Reflection.Assembly.GetEntryAssembly().Location) + "\\";
|
|
public static readonly string startmenu = Environment.GetFolderPath(Environment.SpecialFolder.StartMenu);
|
|
public static readonly string appdata = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\envyupdate\\";
|
|
public static readonly string startup = Environment.GetFolderPath(Environment.SpecialFolder.Startup);
|
|
}
|
|
}
|