[trim] fully-unreachable files deleted: 6 [trim] files edited: 55, files deleted: 0, nodes removed: 244 [type-trim] files edited: 1, types removed: 1 Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
16 lines
380 B
C#
16 lines
380 B
C#
using UnityEngine;
|
|
|
|
namespace Wizard;
|
|
|
|
public static class ToolboxGame
|
|
{
|
|
public static UIManager UIManager = null;
|
|
|
|
public static void SetRealTimeNetworkBattle(RealTimeNetworkAgent agent)
|
|
{
|
|
var mgr = BattleManagerBase.GetIns()
|
|
?? throw new System.InvalidOperationException("SetRealTimeNetworkBattle called with no attached mgr.");
|
|
mgr.InstanceNetworkAgent = agent;
|
|
}
|
|
}
|