18 lines
342 B
C#
18 lines
342 B
C#
using UnityEngine;
|
|
using OPS.Obfuscator.Attribute;
|
|
|
|
namespace TH1_Hotfix
|
|
{
|
|
[DoNotRename]
|
|
public static class HotfixEntry
|
|
{
|
|
public const string Version = "0.1.0";
|
|
|
|
[DoNotRename]
|
|
public static void Initialize()
|
|
{
|
|
Debug.Log($"[TH1.Hotfix] Initialize version {Version}");
|
|
}
|
|
}
|
|
}
|