fix:1、更换项目,使用winter来创建

This commit is contained in:
2026-04-22 11:13:16 +08:00
parent 173cfb2dc9
commit 83ff9f71ad
7375 changed files with 209752 additions and 157557 deletions
@@ -2,7 +2,7 @@ using System;
using UnityEngine;
using System.Collections.Generic;
namespace FlowerPower
namespace LoveLegend
{
public abstract class BaseDispatcher<T, Msg, Param> : IDisposable where T : class, new() where Param : class
{
@@ -2,7 +2,7 @@ using System;
using System.Collections.Generic;
using UnityEngine;
namespace FlowerPower
namespace LoveLegend
{
public class BaseMainThreadDispatcher<T, Msg, Param> : SingletonUnity<T>
where T : SingletonUnity<T>
@@ -1,4 +1,4 @@
namespace FlowerPower
namespace LoveLegend
{
public class AppDispatcher : BaseDispatcher<AppDispatcher, uint, object> { }
}
@@ -1,4 +1,4 @@
namespace FlowerPower
namespace LoveLegend
{
public class CtrlDispatcher : BaseDispatcher<CtrlDispatcher, uint, object>
{
@@ -1,4 +1,4 @@
namespace FlowerPower
namespace LoveLegend
{
public class DataDispatcher : BaseDispatcher<DataDispatcher, string, object>
{
@@ -1,4 +1,4 @@
namespace FlowerPower
namespace LoveLegend
{
public class GameDispatcher : BaseDispatcher<GameDispatcher, uint, object>
{
@@ -1,4 +1,4 @@
namespace FlowerPower
namespace LoveLegend
{
public class MainThreadDispatcher : BaseMainThreadDispatcher<MainThreadDispatcher, uint, object>
{
@@ -1,4 +1,4 @@
namespace FlowerPower
namespace LoveLegend
{
public class ModelDispatcher : BaseDispatcher<ModelDispatcher, uint, object>
{
@@ -1,4 +1,4 @@
namespace FlowerPower
namespace LoveLegend
{
public class NetworkDispatcher : BaseDispatcher<NetworkDispatcher, uint, object>
{
@@ -1,4 +1,4 @@
namespace FlowerPower
namespace LoveLegend
{
public class PreferencesDispatcher<T> : BaseDispatcher<PreferencesDispatcher<T>, string, ChangeValue<T>>
{
@@ -1,4 +1,4 @@
namespace FlowerPower
namespace LoveLegend
{
public class UICtrlDispatcher : BaseDispatcher<UICtrlDispatcher, uint, object>
{