Skip to content

Commit

Permalink
Dont
Browse files Browse the repository at this point in the history
so yeah i got bored and addid this mess
  • Loading branch information
IchimakiKasura committed Mar 2, 2023
1 parent 9630b03 commit 65f4559
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions Launcher DL/Core/Configuration/ConfigSTR.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
namespace Launcher_DL.Core.Configuration;

public abstract class CONFIG_STR
{
//DefaultConfig
public const string CONFIG_DEFAULT_BACKGROUND = "background.png";
public const string CONFIG_DEFAULT_OUTPUT = "output";
public const string CONFIG_DEFAULT_COOKIE = "chrome";
public const string CONFIG_DEFAULT_BACKGROUND_COLOR = "#FF161438";
public const string CONFIG_DEFAULT_BACKGROUND_GLOW = "#FF7DB5FF";
public const bool CONFIG_DEFAULT_SYSTEM_OUTPUT = true;
public const bool CONFIG_DEFAULT_PLAYLIST = true;
public const bool CONFIG_DEFAULT_ANIMATIONS = true;
public const bool CONFIG_DEFAULT_COOKIES = false;
public const int CONFIG_DEFAULT_FILE_TYPE = 0;


// uhh yeah
public const string CONFIG_NAME = "Config.ini";
public const string CONFIG_LANGUAGE = "Language";
public const string CONFIG_BACKGROUND_NAME = "backgroundName";
public const string CONFIG_BACKGROUND_COLOR = "backgroundColor";
public const string CONFIG_BACKGROUND_GLOW = "backgroundGlowColor";
public const string CONFIG_ALLOW_COOKIES = "AllowCookies";
public const string CONFIG_BROWSER_COOKIES = "BrowserCookie";
public const string CONFIG_OUTPUT = "DefaultOutput";
public const string CONFIG_SYSTEM_OUTPUT = "ShowSystemOutput";
public const string CONFIG_FILE_TYPE = "DefaultFileTypeOnStartUp";
public const string CONFIG_ENABLE_PLAYLIST = "EnablePlaylist";
public const string CONFIG_ANIMATIONS = "EpicAnimations";

public const string CONFIG_SECTION_APP = "App";
public const string CONFIG_SECTION_BACKROUND = "Background";
public const string CONFIG_SECTION_COOKIES = "Cookies";
public const string CONFIG_SECTION_FILE = "File";
public const string CONFIG_SECTION_CONSOLE = "Console";
public const string CONFIG_SECTION_DROPDOWN = "DropDown";
public const string CONFIG_SECTION_PLAYLIST = "Playlist";
public const string CONFIG_SECTION_GRAPHICS = "graphics";

public const string CONFIG_COLOR_CONTAINS = "System.Windows.Media.Color";
}

0 comments on commit 65f4559

Please sign in to comment.