first commit

This commit is contained in:
Chris
2025-03-12 14:22:16 -04:00
commit 0ad0c01249
1999 changed files with 189708 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
#if ENABLE_MONO && (DEVELOPMENT_BUILD || UNITY_EDITOR)
using UnityEngine;
namespace SingularityGroup.HotReload {
internal static class PackageConst {
//CI changes this property to 'true' for asset store builds.
//Don't touch unless you know what you are doing
public static bool IsAssetStoreBuild => true;
public const string Version = "1.12.14";
// Never higher than Version
// Used for the download
public const string ServerVersion = "1.12.12";
public const string PackageName = "com.singularitygroup.hotreload";
public const string LibraryCachePath = "Library/" + PackageName;
public const string ConfigFileName = "hot-reload-config.json";
}
}
#endif