Files
Wand-Enhancer-luanslimadev/WeModPatcher/Constants.cs
T
2025-03-23 11:37:00 +02:00

18 lines
484 B
C#

using System;
using System.Reflection;
namespace WeModPatcher
{
public static class Constants
{
public const string RepoName = "Wemod-Patcher";
public const string Owner = "k1tbyte";
public static readonly string RepositoryUrl = $"https://github.com/{Owner}/{RepoName}";
public static readonly Version Version;
static Constants()
{
Version = Assembly.GetExecutingAssembly().GetName().Version;
}
}
}