调整 Event 和 Editor 命名空间
- 将原来的 CustomEvent 调整到 SepCore.Event - 将 Editor 文件夹下的统一到 SepCore.Editor,顺带修改了 Editor 程序集
This commit is contained in:
parent
34c0784190
commit
affa44e4d0
|
|
@ -1,6 +1,6 @@
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using Components;
|
using Components;
|
||||||
using CustomEvent;
|
using SepCore.Event;
|
||||||
using SepCore.DataTable;
|
using SepCore.DataTable;
|
||||||
using SepCore.Definition;
|
using SepCore.Definition;
|
||||||
using Entity.EntityData;
|
using Entity.EntityData;
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@ using GameFramework;
|
||||||
using GameFramework.Event;
|
using GameFramework.Event;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace CustomEvent
|
namespace SepCore.Event
|
||||||
{
|
{
|
||||||
public sealed class ProjectileHitPresentationEventArgs : GameEventArgs
|
public sealed class ProjectileHitPresentationEventArgs : GameEventArgs
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
using GameFramework;
|
using GameFramework;
|
||||||
using GameFramework.Event;
|
using GameFramework.Event;
|
||||||
|
|
||||||
namespace CustomEvent
|
namespace SepCore.Event
|
||||||
{
|
{
|
||||||
public class DisplayItemInfoHideEventArgs : GameEventArgs
|
public class DisplayItemInfoHideEventArgs : GameEventArgs
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
using GameFramework;
|
using GameFramework;
|
||||||
using GameFramework.Event;
|
using GameFramework.Event;
|
||||||
|
|
||||||
namespace CustomEvent
|
namespace SepCore.Event
|
||||||
{
|
{
|
||||||
public class DisplayItemInfoLockEventArgs : GameEventArgs
|
public class DisplayItemInfoLockEventArgs : GameEventArgs
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@ using GameFramework;
|
||||||
using GameFramework.Event;
|
using GameFramework.Event;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace CustomEvent
|
namespace SepCore.Event
|
||||||
{
|
{
|
||||||
public class DisplayItemShowEventArgs : GameEventArgs
|
public class DisplayItemShowEventArgs : GameEventArgs
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
using GameFramework;
|
using GameFramework;
|
||||||
using GameFramework.Event;
|
using GameFramework.Event;
|
||||||
|
|
||||||
namespace CustomEvent
|
namespace SepCore.Event
|
||||||
{
|
{
|
||||||
public class LevelProcessEventArgs : GameEventArgs
|
public class LevelProcessEventArgs : GameEventArgs
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
using GameFramework;
|
using GameFramework;
|
||||||
using GameFramework.Event;
|
using GameFramework.Event;
|
||||||
|
|
||||||
namespace CustomEvent
|
namespace SepCore.Event
|
||||||
{
|
{
|
||||||
public class LevelUpPropSelectedEventArgs : GameEventArgs
|
public class LevelUpPropSelectedEventArgs : GameEventArgs
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
using GameFramework;
|
using GameFramework;
|
||||||
using GameFramework.Event;
|
using GameFramework.Event;
|
||||||
|
|
||||||
namespace CustomEvent
|
namespace SepCore.Event
|
||||||
{
|
{
|
||||||
public class MenuAboutButtonClickEventArgs : GameEventArgs
|
public class MenuAboutButtonClickEventArgs : GameEventArgs
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
using GameFramework;
|
using GameFramework;
|
||||||
using GameFramework.Event;
|
using GameFramework.Event;
|
||||||
|
|
||||||
namespace CustomEvent
|
namespace SepCore.Event
|
||||||
{
|
{
|
||||||
public class MenuFileButtonClickEventArgs : GameEventArgs
|
public class MenuFileButtonClickEventArgs : GameEventArgs
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
using GameFramework;
|
using GameFramework;
|
||||||
using GameFramework.Event;
|
using GameFramework.Event;
|
||||||
|
|
||||||
namespace CustomEvent
|
namespace SepCore.Event
|
||||||
{
|
{
|
||||||
public class MenuGuideButtonClickEventArgs : GameEventArgs
|
public class MenuGuideButtonClickEventArgs : GameEventArgs
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
using GameFramework;
|
using GameFramework;
|
||||||
using GameFramework.Event;
|
using GameFramework.Event;
|
||||||
|
|
||||||
namespace CustomEvent
|
namespace SepCore.Event
|
||||||
{
|
{
|
||||||
public class MenuQuitButtonClickEventArgs : GameEventArgs
|
public class MenuQuitButtonClickEventArgs : GameEventArgs
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
using GameFramework;
|
using GameFramework;
|
||||||
using GameFramework.Event;
|
using GameFramework.Event;
|
||||||
|
|
||||||
namespace CustomEvent
|
namespace SepCore.Event
|
||||||
{
|
{
|
||||||
public class MenuSelectRoleConfirmEventArgs : GameEventArgs
|
public class MenuSelectRoleConfirmEventArgs : GameEventArgs
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
using GameFramework;
|
using GameFramework;
|
||||||
using GameFramework.Event;
|
using GameFramework.Event;
|
||||||
|
|
||||||
namespace CustomEvent
|
namespace SepCore.Event
|
||||||
{
|
{
|
||||||
public class MenuSelectRoleReturnEventArgs : GameEventArgs
|
public class MenuSelectRoleReturnEventArgs : GameEventArgs
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
using GameFramework;
|
using GameFramework;
|
||||||
using GameFramework.Event;
|
using GameFramework.Event;
|
||||||
|
|
||||||
namespace CustomEvent
|
namespace SepCore.Event
|
||||||
{
|
{
|
||||||
public class MenuSelectRoleSelectedEventArgs : GameEventArgs
|
public class MenuSelectRoleSelectedEventArgs : GameEventArgs
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
using GameFramework;
|
using GameFramework;
|
||||||
using GameFramework.Event;
|
using GameFramework.Event;
|
||||||
|
|
||||||
namespace CustomEvent
|
namespace SepCore.Event
|
||||||
{
|
{
|
||||||
public class MenuSettingButtonClickEventArgs : GameEventArgs
|
public class MenuSettingButtonClickEventArgs : GameEventArgs
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
using GameFramework;
|
using GameFramework;
|
||||||
using GameFramework.Event;
|
using GameFramework.Event;
|
||||||
|
|
||||||
namespace CustomEvent
|
namespace SepCore.Event
|
||||||
{
|
{
|
||||||
public class MenuStartGameEventArgs : GameEventArgs
|
public class MenuStartGameEventArgs : GameEventArgs
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
using GameFramework;
|
using GameFramework;
|
||||||
using GameFramework.Event;
|
using GameFramework.Event;
|
||||||
|
|
||||||
namespace CustomEvent
|
namespace SepCore.Event
|
||||||
{
|
{
|
||||||
public class PlayerCoinChangeEventArgs : GameEventArgs
|
public class PlayerCoinChangeEventArgs : GameEventArgs
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
using GameFramework;
|
using GameFramework;
|
||||||
using GameFramework.Event;
|
using GameFramework.Event;
|
||||||
|
|
||||||
namespace CustomEvent
|
namespace SepCore.Event
|
||||||
{
|
{
|
||||||
public class PlayerExpChangeEventArgs : GameEventArgs
|
public class PlayerExpChangeEventArgs : GameEventArgs
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
using GameFramework;
|
using GameFramework;
|
||||||
using GameFramework.Event;
|
using GameFramework.Event;
|
||||||
|
|
||||||
namespace CustomEvent
|
namespace SepCore.Event
|
||||||
{
|
{
|
||||||
public class PlayerHealthChangeEventArgs : GameEventArgs
|
public class PlayerHealthChangeEventArgs : GameEventArgs
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
using GameFramework;
|
using GameFramework;
|
||||||
using GameFramework.Event;
|
using GameFramework.Event;
|
||||||
|
|
||||||
namespace CustomEvent
|
namespace SepCore.Event
|
||||||
{
|
{
|
||||||
public class PlayerLevelUpEventArgs : GameEventArgs
|
public class PlayerLevelUpEventArgs : GameEventArgs
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
using GameFramework;
|
using GameFramework;
|
||||||
using GameFramework.Event;
|
using GameFramework.Event;
|
||||||
|
|
||||||
namespace CustomEvent
|
namespace SepCore.Event
|
||||||
{
|
{
|
||||||
public class RefreshEventArgs : GameEventArgs
|
public class RefreshEventArgs : GameEventArgs
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
using GameFramework;
|
using GameFramework;
|
||||||
using GameFramework.Event;
|
using GameFramework.Event;
|
||||||
|
|
||||||
namespace CustomEvent
|
namespace SepCore.Event
|
||||||
{
|
{
|
||||||
public class ShopContinueEventArgs : GameEventArgs
|
public class ShopContinueEventArgs : GameEventArgs
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
using GameFramework;
|
using GameFramework;
|
||||||
using GameFramework.Event;
|
using GameFramework.Event;
|
||||||
|
|
||||||
namespace CustomEvent
|
namespace SepCore.Event
|
||||||
{
|
{
|
||||||
public class ShopPurchaseEventArgs : GameEventArgs
|
public class ShopPurchaseEventArgs : GameEventArgs
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
using GameFramework;
|
using GameFramework;
|
||||||
using GameFramework.Event;
|
using GameFramework.Event;
|
||||||
|
|
||||||
namespace CustomEvent
|
namespace SepCore.Event
|
||||||
{
|
{
|
||||||
public class ShopWeaponRecycleEventArgs : GameEventArgs
|
public class ShopWeaponRecycleEventArgs : GameEventArgs
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,17 +1,10 @@
|
||||||
//------------------------------------------------------------
|
using SepCore.Definition;
|
||||||
// Game Framework
|
|
||||||
// Copyright © 2013-2021 Jiang Yin. All rights reserved.
|
|
||||||
// Homepage: https://gameframework.cn/
|
|
||||||
// Feedback: mailto:ellan@gameframework.cn
|
|
||||||
//------------------------------------------------------------
|
|
||||||
|
|
||||||
using SepCore.Definition;
|
|
||||||
using GameFramework.Debugger;
|
using GameFramework.Debugger;
|
||||||
using GameFramework.Localization;
|
using GameFramework.Localization;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using UnityGameFramework.Runtime;
|
using UnityGameFramework.Runtime;
|
||||||
|
|
||||||
namespace StarForce
|
namespace SepCore.Editor
|
||||||
{
|
{
|
||||||
public class ChangeLanguageDebuggerWindow : IDebuggerWindow
|
public class ChangeLanguageDebuggerWindow : IDebuggerWindow
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,17 +1,10 @@
|
||||||
//------------------------------------------------------------
|
using GameFramework;
|
||||||
// Game Framework
|
|
||||||
// Copyright © 2013-2021 Jiang Yin. All rights reserved.
|
|
||||||
// Homepage: https://gameframework.cn/
|
|
||||||
// Feedback: mailto:ellan@gameframework.cn
|
|
||||||
//------------------------------------------------------------
|
|
||||||
|
|
||||||
using GameFramework;
|
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using UnityGameFramework.Editor;
|
using UnityGameFramework.Editor;
|
||||||
using UnityGameFramework.Editor.ResourceTools;
|
using UnityGameFramework.Editor.ResourceTools;
|
||||||
|
|
||||||
namespace StarForce.Editor
|
namespace SepCore.Editor
|
||||||
{
|
{
|
||||||
public static class GameFrameworkConfigs
|
public static class GameFrameworkConfigs
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,3 @@
|
||||||
#if UNITY_EDITOR
|
|
||||||
using System;
|
using System;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using CustomComponent;
|
using CustomComponent;
|
||||||
|
|
@ -10,7 +9,7 @@ using Procedure;
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace StarForce.Editor
|
namespace SepCore.Editor
|
||||||
{
|
{
|
||||||
public class PlayerBuffConsoleWindow : EditorWindow
|
public class PlayerBuffConsoleWindow : EditorWindow
|
||||||
{
|
{
|
||||||
|
|
@ -27,7 +26,7 @@ namespace StarForce.Editor
|
||||||
private float _spawnRateScaleInput = 1f;
|
private float _spawnRateScaleInput = 1f;
|
||||||
private float _extendDurationSeconds = 30f;
|
private float _extendDurationSeconds = 30f;
|
||||||
|
|
||||||
[MenuItem("StarForce/Debug/Player Buff Console")]
|
[MenuItem("SepCore/Debug/Player Buff Console")]
|
||||||
private static void Open()
|
private static void Open()
|
||||||
{
|
{
|
||||||
GetWindow<PlayerBuffConsoleWindow>(WindowTitle);
|
GetWindow<PlayerBuffConsoleWindow>(WindowTitle);
|
||||||
|
|
@ -291,4 +290,3 @@ namespace StarForce.Editor
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
|
|
@ -3,6 +3,8 @@ using UnityEditor.SceneManagement;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
|
namespace SepCore.Editor
|
||||||
|
{
|
||||||
[InitializeOnLoad]
|
[InitializeOnLoad]
|
||||||
public class SceneSwitchLeft
|
public class SceneSwitchLeft
|
||||||
{
|
{
|
||||||
|
|
@ -18,10 +20,12 @@ public class SceneSwitchLeft
|
||||||
Handles.BeginGUI();
|
Handles.BeginGUI();
|
||||||
|
|
||||||
GUILayout.BeginArea(new Rect(10, 10, 200, 100));
|
GUILayout.BeginArea(new Rect(10, 10, 200, 100));
|
||||||
if (EditorGUILayout.DropdownButton(new GUIContent("快速切换场景"), FocusType.Passive, EditorStyles.toolbarDropDown))
|
if (EditorGUILayout.DropdownButton(new GUIContent("快速切换场景"), FocusType.Passive,
|
||||||
|
EditorStyles.toolbarDropDown))
|
||||||
{
|
{
|
||||||
ShowSceneMenu();
|
ShowSceneMenu();
|
||||||
}
|
}
|
||||||
|
|
||||||
GUILayout.EndArea();
|
GUILayout.EndArea();
|
||||||
|
|
||||||
Handles.EndGUI();
|
Handles.EndGUI();
|
||||||
|
|
@ -39,7 +43,8 @@ public class SceneSwitchLeft
|
||||||
string path = AssetDatabase.GUIDToAssetPath(guid);
|
string path = AssetDatabase.GUIDToAssetPath(guid);
|
||||||
string name = Path.GetFileNameWithoutExtension(path);
|
string name = Path.GetFileNameWithoutExtension(path);
|
||||||
|
|
||||||
menu.AddItem(new GUIContent(name), false, () => {
|
menu.AddItem(new GUIContent(name), false, () =>
|
||||||
|
{
|
||||||
if (EditorSceneManager.SaveCurrentModifiedScenesIfUserWantsTo())
|
if (EditorSceneManager.SaveCurrentModifiedScenesIfUserWantsTo())
|
||||||
{
|
{
|
||||||
EditorSceneManager.OpenScene(path);
|
EditorSceneManager.OpenScene(path);
|
||||||
|
|
@ -50,3 +55,4 @@ public class SceneSwitchLeft
|
||||||
menu.ShowAsContext();
|
menu.ShowAsContext();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,10 @@
|
||||||
{
|
{
|
||||||
"name": "VampireLike.Editor",
|
"name": "SepCore.Editor",
|
||||||
"rootNamespace": "",
|
"rootNamespace": "SepCore.Editor",
|
||||||
"references": [
|
"references": [
|
||||||
"VampireLike",
|
"GUID:47a82ffa13c291447ab895cd0bc251cd",
|
||||||
"UnityGameFramework.Runtime",
|
"GUID:363c5eb08ff8e6a439b85e37b8c20d96",
|
||||||
"UnityGameFramework.Editor"
|
"GUID:a2d8a19598eca814496b089021d08d60"
|
||||||
],
|
],
|
||||||
"includePlatforms": [
|
"includePlatforms": [
|
||||||
"Editor"
|
"Editor"
|
||||||
|
|
@ -4,9 +4,9 @@ using UnityEditor;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using UnityGameFramework.Editor.ResourceTools;
|
using UnityGameFramework.Editor.ResourceTools;
|
||||||
|
|
||||||
namespace VampireLike.Editor
|
namespace SepCore.Editor
|
||||||
{
|
{
|
||||||
public sealed class VampireLikeBuildEventHandler : IBuildEventHandler
|
public sealed class DefaultBuildEventHandler : IBuildEventHandler
|
||||||
{
|
{
|
||||||
public bool ContinueOnFailure
|
public bool ContinueOnFailure
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
using CustomEvent;
|
using SepCore.Event;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using UnityEngine.UI;
|
using UnityEngine.UI;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
using CustomEvent;
|
using SepCore.Event;
|
||||||
using TMPro;
|
using TMPro;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using UnityGameFramework.Runtime;
|
using UnityGameFramework.Runtime;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
using CustomEvent;
|
using SepCore.Event;
|
||||||
using SepCore.Definition;
|
using SepCore.Definition;
|
||||||
using GameFramework.Event;
|
using GameFramework.Event;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
using CustomComponent;
|
using CustomComponent;
|
||||||
using CustomEvent;
|
using SepCore.Event;
|
||||||
using GameFramework.Event;
|
using GameFramework.Event;
|
||||||
using TMPro;
|
using TMPro;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
using CustomEvent;
|
using SepCore.Event;
|
||||||
using TMPro;
|
using TMPro;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using UnityGameFramework.Runtime;
|
using UnityGameFramework.Runtime;
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using CustomEvent;
|
using SepCore.Event;
|
||||||
using SepCore.Definition;
|
using SepCore.Definition;
|
||||||
using CustomUtility;
|
using CustomUtility;
|
||||||
using GameFramework.Event;
|
using GameFramework.Event;
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using CustomEvent;
|
using SepCore.Event;
|
||||||
using GameFramework.Event;
|
using GameFramework.Event;
|
||||||
using TMPro;
|
using TMPro;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using CustomEvent;
|
using SepCore.Event;
|
||||||
using SepCore.Definition;
|
using SepCore.Definition;
|
||||||
using CustomUtility;
|
using CustomUtility;
|
||||||
using Entity.Weapon;
|
using Entity.Weapon;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
using CustomEvent;
|
using SepCore.Event;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using UnityEngine.UI;
|
using UnityEngine.UI;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
using System;
|
using System;
|
||||||
using CustomEvent;
|
using SepCore.Event;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using UnityGameFramework.Runtime;
|
using UnityGameFramework.Runtime;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
using CustomEvent;
|
using SepCore.Event;
|
||||||
using SepCore.Definition;
|
using SepCore.Definition;
|
||||||
using GameFramework.Event;
|
using GameFramework.Event;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
using CustomEvent;
|
using SepCore.Event;
|
||||||
using UnityGameFramework.Runtime;
|
using UnityGameFramework.Runtime;
|
||||||
|
|
||||||
namespace UI
|
namespace UI
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
using CustomEvent;
|
using SepCore.Event;
|
||||||
using SepCore.Definition;
|
using SepCore.Definition;
|
||||||
using GameFramework.Event;
|
using GameFramework.Event;
|
||||||
using UnityGameFramework.Runtime;
|
using UnityGameFramework.Runtime;
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
using System;
|
using System;
|
||||||
using CustomComponent;
|
using CustomComponent;
|
||||||
using CustomEvent;
|
using SepCore.Event;
|
||||||
using SepCore.DataTable;
|
using SepCore.DataTable;
|
||||||
using Entity;
|
using Entity;
|
||||||
using GameFramework.Fsm;
|
using GameFramework.Fsm;
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
using System;
|
using System;
|
||||||
using CustomEvent;
|
using SepCore.Event;
|
||||||
using SepCore.Definition;
|
using SepCore.Definition;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using Components;
|
using Components;
|
||||||
using CustomEvent;
|
using SepCore.Event;
|
||||||
using SepCore.DataTable;
|
using SepCore.DataTable;
|
||||||
using SepCore.Definition;
|
using SepCore.Definition;
|
||||||
using Entity;
|
using Entity;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
using CustomEvent;
|
using SepCore.Event;
|
||||||
using SepCore.Definition;
|
using SepCore.Definition;
|
||||||
using Entity;
|
using Entity;
|
||||||
using Entity.Weapon;
|
using Entity.Weapon;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
using CustomEvent;
|
using SepCore.Event;
|
||||||
using Entity;
|
using Entity;
|
||||||
using Entity.EntityData;
|
using Entity.EntityData;
|
||||||
using Entity.Weapon;
|
using Entity.Weapon;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue