20 lines
		
	
	
		
			868 B
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			868 B
		
	
	
	
		
			C#
		
	
	
namespace Guru
 | 
						|
{
 | 
						|
    //=== DO NOT CHANGE THIS FILE, AUTO FIXED BY CODE ===//
 | 
						|
    public class GuruCore
 | 
						|
    {
 | 
						|
        //**** GURU CORE VERSION ****//
 | 
						|
        public static readonly string Version = "2.1.1";
 | 
						|
        //**** GURU VERSION URL ****//
 | 
						|
        public static readonly string VersionListUrl = $"{CONTENT_URL_MAIN_PREFIX}version.json";
 | 
						|
        // GuruCore Project Path
 | 
						|
        public const string UNITY_GURUCORE_URL = "https://github.com/castbox/unity_gurucore";
 | 
						|
        // Template Project Path
 | 
						|
        public const string UNITY_TEMPLATE_URL = "https://github.com/castbox/unity_template";
 | 
						|
        // Content Url Prefix for main branch
 | 
						|
        public const string CONTENT_URL_MAIN_PREFIX = "https://raw.githubusercontent.com/castbox/unity_gurucore/main/";
 | 
						|
        // Version Code File Name
 | 
						|
        public const string VERSION_CODE_FILE = "verison_code";
 | 
						|
    }
 | 
						|
}
 |