Files
SVSimServer/SVSim.BattleEngine/Engine/ArenaEntryDialogData.cs
gamer147 0455ff649e feat(battle-engine): EffectType full enum + collection/card/vfx extension copies
Replaces partial EffectMgr.EffectType with all 226 decomp values; copies the
IsNotNullOrEmpty/EquelsID/FindFromCardId/GetAllFuncVfxResults extension files +
UI extensions; adds Renderer/MeshFilter shared-material/mesh/sortingOrder. Compile
loop then closed the revealed deps (3242 files). 9.1k -> 18 errors.
2026-06-05 20:38:56 -04:00

53 lines
966 B
C#

using UnityEngine;
public class ArenaEntryDialogData : MonoBehaviour
{
public GameObject BuyDialogObject;
public UILabel _mainText;
public UISprite _ticketSprite;
public UIButton _ticketButton;
public UIButton _rupyButton;
public UIButton _crystalButton;
public UILabel _ticketHaveTitle;
public UILabel _ticketHaveNum;
public UILabel _ticketHaveUnit;
public UILabel _ticketButtonTitle;
public UILabel _ticketButtonSubTitle;
public UILabel _ticketButtonUseNum;
public UILabel _rupyHaveTitle;
public UILabel _rupyHaveNum;
public UILabel _rupyHaveUnit;
public UILabel _rupyButtonTitle;
public UILabel _rupyButtonSubTitle;
public UILabel _rupyButtonUseNum;
public UILabel _crystalHaveTitle;
public UILabel _crystalHaveNum;
public UILabel _crystalHaveUnit;
public UILabel _crystalButtonTitle;
public UILabel _crystalButtonSubTitle;
public UILabel _crystalButtonUseNum;
}