Initial Commit

This commit is contained in:
2023-08-02 14:01:07 +02:00
commit 631551259b
32 changed files with 4830 additions and 0 deletions

16
core/LauncherConstants.cs Normal file
View File

@@ -0,0 +1,16 @@
using System.Reflection;
/**
* Author: HypherionSA
* Constant values used throughout the launcher
**/
namespace WolfLauncher.core
{
public class LauncherConstants
{
// Branding
public static readonly string LauncherName = "Wolf Launcher";
public static readonly string LauncherBuild = "Alpha";
public static readonly string Version = Assembly.GetExecutingAssembly().GetName().Version.ToString();
}
}