16 lines
649 B
C#
16 lines
649 B
C#
using System.Collections;
|
|
using Wizard.RoomMatch;
|
|
|
|
// PASS-8/Phase-2 STUB: 1,119-line client-side battle-tab MyPage panel reduced to its
|
|
// compile-time surface. MyPageMenu.Instance returns null so BattleMenu.JoinRoom is
|
|
// never reachable at runtime on the headless node. One external caller
|
|
// (RoomInviteReceiveDialog) references JoinRoom; preserved as yield-break IEnumerator.
|
|
// Held alive by MyPageMenu.BattleMenu return-type reference. See Task 2a of PASS8-PLAN.md.
|
|
public class MyPageItemBattle : MyPageItem
|
|
{
|
|
public IEnumerator JoinRoom(RoomConnectController.InitializeParameter param, bool isInvite)
|
|
{
|
|
yield break;
|
|
}
|
|
}
|