mirror of
https://github.com/luanslimadev/Wand-Enhancer.git
synced 2026-08-29 01:08:52 +00:00
18 lines
484 B
C#
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;
|
|
}
|
|
}
|
|
} |