15 lines
530 B
C#
15 lines
530 B
C#
using System.Collections.Generic;
|
|
using AlicizaX.Resource.Runtime;
|
|
using YooAsset;
|
|
|
|
public static class StartupSetting
|
|
{
|
|
public const string EntranceDll = "GameLogic.dll";
|
|
public const string EntranceClass = "GameLogic.HotfixEntry";
|
|
public const string EntranceMethod = "Entrance";
|
|
public static ResourceDownloaderOperation Downloader { get; set; }
|
|
|
|
public static readonly List<string> HotUpdateAssemblies = new List<string>()
|
|
{ "GameLib.dll", "GameProto.dll", "GameBase.dll", "GameLogic.dll" };
|
|
}
|