Files
SVSimServer/SVSim.BattleEngine/Engine/GachaUI.cs

26 lines
734 B
C#

// PASS-8/Phase-2 STUB: 1,419-line client-side gacha pack-opening UI reduced to the
// compile-time surface external callers touch. Held alive by pack-opening flow callers
// referencing GachaUI.CardPackType enum and GachaUI.IsTsStepupPackId. Two members
// preserved. See Task 2b of PASS8-PLAN.md.
public class GachaUI : UIBase
{
public enum CardPackType
{
NONE,
CRYSTAL_MULTI,
DAILY,
TICKET,
TICKET_MULTI,
RUPY,
RUPY_MULTI,
CRYSTAL_SPECIAL,
CRYSTAL_SELECT_SKIN,
FREE_PACKS,
FREE_PACK_WITH_SKIN,
ROTATION_STARTER_PACK,
CRYSTAL_ACQUIRE_SKIN_CARD_PACK
}
public static bool IsTsStepupPackId(int packId) => false;
}