cull(engine-cleanup): pass-9 cascade round 2 after DialogBase stub
This commit is contained in:
@@ -293,17 +293,4 @@ public class NetworkManager : MonoBehaviour, IManager
|
||||
{
|
||||
unityWebRequest.Dispose();
|
||||
}
|
||||
|
||||
public void StopConnectCoroutine()
|
||||
{
|
||||
if (connectCoroutine != null)
|
||||
{
|
||||
if (RealTimeNetworkAgent.IsNormalNetworkBattle())
|
||||
{
|
||||
LocalLog.AccumulateLastTraceLog("NetworkManager_StopConnectCoroutine " + StackTraceUtility.ExtractStackTrace());
|
||||
}
|
||||
StopCoroutine(connectCoroutine);
|
||||
isConnect = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -476,11 +476,6 @@ public class NetworkTask
|
||||
return false;
|
||||
}
|
||||
|
||||
public void GotoStore()
|
||||
{
|
||||
BrowserURL.Open(getDataHeader()["store_url"].ToString());
|
||||
}
|
||||
|
||||
private bool isResourceVersionUp()
|
||||
{
|
||||
if (getDataHeader().Keys.Contains("required_res_ver"))
|
||||
|
||||
@@ -16,14 +16,6 @@ public class FavoriteTask : BaseTask
|
||||
public string[] favorite_remove;
|
||||
}
|
||||
|
||||
public void SetParameter(string[] add, string[] remove)
|
||||
{
|
||||
FavoriteTaskParam favoriteTaskParam = new FavoriteTaskParam();
|
||||
favoriteTaskParam.favorite_add = add;
|
||||
favoriteTaskParam.favorite_remove = remove;
|
||||
base.Params = favoriteTaskParam;
|
||||
}
|
||||
|
||||
public FavoriteTask(Kind kind)
|
||||
{
|
||||
switch (kind)
|
||||
|
||||
@@ -29,12 +29,6 @@ public class WebViewHelper
|
||||
|
||||
public enum UrlType
|
||||
{
|
||||
POLICY,
|
||||
FACEBOOK,
|
||||
RECOMMENDED_DEVICE,
|
||||
GAME_GUIDE,
|
||||
NICONICO,
|
||||
NICONICO_PUBLISH
|
||||
}
|
||||
|
||||
private bool _isDestroyedWebView;
|
||||
@@ -201,9 +195,4 @@ public class WebViewHelper
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
public void PrepareOpenUrl(Action onFinish)
|
||||
{
|
||||
onFinish();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,6 +7,5 @@ namespace Wizard
|
||||
{
|
||||
public partial class AccountTransferHelper
|
||||
{
|
||||
public void DataTransferByFaceBook() { }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,7 +6,4 @@ using Wizard.Battle.View.Vfx;
|
||||
using Wizard.Dialog.Setting;
|
||||
namespace Wizard
|
||||
{
|
||||
public partial class ApplicationFinishManager
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
@@ -56,7 +56,6 @@ public partial class UIManager
|
||||
public bool isBattleRecovery { get; set; }
|
||||
public WebViewHelper WebViewHelper { get; set; }
|
||||
public bool IsTouchable { get; set; }
|
||||
public AccountTransferHelper AccountTransferHelper { get; set; }
|
||||
public Camera getCamera() => default!;
|
||||
public string GetSceneAssetPath(UIAtlasManager.AssetBundleNames assetname, string singlebundlename = "", bool isload = false) => default!;
|
||||
public void AddResidentAtlas(UIAtlasManager.AssetBundleNames atlasName) { }
|
||||
|
||||
@@ -94,5 +94,4 @@ namespace Wizard
|
||||
{
|
||||
public partial class DeckUpdateTask { }
|
||||
public partial class AccountTransferHelper { }
|
||||
public partial class ApplicationFinishManager { }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user