14 lines
458 B
C#
14 lines
458 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 readonly List<string> HotUpdateAssemblies = new List<string>()
|
|||
|
|
{ "GameLib.dll", "GameProto.dll", "GameBase.dll", "GameLogic.dll" };
|
|||
|
|
}
|