Skip to content

Commit

Permalink
v1.0.4 update QFramework.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
liangxiegame committed Aug 8, 2022
1 parent 60560fd commit 77327f8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
Binary file modified QFramework.Toolkits.unitypackage
Binary file not shown.
10 changes: 4 additions & 6 deletions QFramework.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,11 @@
* Contributor
* TastSong https://github.com/TastSong
* 京产肠饭 https://gitee.com/JingChanChangFan/hk_-unity-tools
* 猫叔(一只皮皮虾) https://space.bilibili.com/656352/
*
* Community
* QQ Group: 623597263
* Latest Update: 2022.7.21 13:15 Add ExecuteCommand virtual method
* Latest Update: 2022.8.8 10:24 List=>HashSet
****************************************************************************/

using System;
Expand Down Expand Up @@ -56,14 +57,11 @@ public interface IArchitecture

public abstract class Architecture<T> : IArchitecture where T : Architecture<T>, new()
{
/// <summary>
/// 是否初始化完成
/// </summary>
private bool mInited = false;

private List<ISystem> mSystems = new List<ISystem>();
private HashSet<ISystem> mSystems = new HashSet<ISystem>();

private List<IModel> mModels = new List<IModel>();
private HashSet<IModel> mModels = new HashSet<IModel>();

public static Action<T> OnRegisterPatch = architecture => { };

Expand Down
Binary file modified QFramework.cs.Examples.unitypackage
Binary file not shown.

0 comments on commit 77327f8

Please sign in to comment.