Skip to content

Commit

Permalink
v1.0.37 QFramework.cs IController Support ICanGetUtility
Browse files Browse the repository at this point in the history
  • Loading branch information
liangxiegame committed Mar 10, 2023
1 parent 57b2de7 commit da7cbb0
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 28 deletions.
Binary file modified QFramework.Toolkits.unitypackage
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"Id": "",
"Version": "v1.0.36",
"Version": "v1.0.37",
"Type": 0,
"AccessRight": 0,
"DownloadUrl": "",
Expand All @@ -11,10 +11,10 @@
],
"DocUrl": "https://liangxiegame.com",
"Readme": {
"version": "v1.0.36",
"content": "EasyGrid 支持增量 Resize",
"version": "v1.0.37",
"content": "QFramework.cs IController Support ICanGetUtility",
"author": "liangxie",
"date": "2023 年 03 月 0912:11",
"date": "2023 年 03 月 1010:42",
"PackageId": ""
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/****************************************************************************
* Copyright (c) 2015 ~ 2022 liangxiegame MIT License
* Copyright (c) 2015 ~ 2023 liangxiegame MIT License
*
* QFramework v1.0
*
Expand All @@ -18,7 +18,7 @@
*
* Community
* QQ Group: 623597263
* Latest Update: 2022.12.19 14:38 support Component Version of UnRegisterWhenGameObjectDestroyed
* Latest Update: 2023.3.10 10:40 IController Support ICanGetUtility
****************************************************************************/

using System;
Expand Down Expand Up @@ -236,7 +236,7 @@ public static class OnGlobalEventExtension
#region Controller

public interface IController : IBelongToArchitecture, ICanSendCommand, ICanGetSystem, ICanGetModel,
ICanRegisterEvent, ICanSendQuery
ICanRegisterEvent, ICanSendQuery,ICanGetUtility
{
}

Expand Down

This file was deleted.

8 changes: 0 additions & 8 deletions QFramework.Unity2018+/Assets/StreamingAssets.meta

This file was deleted.

3 changes: 1 addition & 2 deletions QFramework.Unity2018+/QFramework.Unity2018+.sln
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@

Microsoft Visual Studio Solution File, Format Version 11.00
Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "QFramework.CoreKit", "QFramework.CoreKit.csproj", "{D3A89052-43AC-6A8A-EF6B-9211E51A1595}"
EndProject
Expand Down
6 changes: 3 additions & 3 deletions QFramework.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/****************************************************************************
* Copyright (c) 2015 ~ 2022 liangxiegame MIT License
* Copyright (c) 2015 ~ 2023 liangxiegame MIT License
*
* QFramework v1.0
*
Expand All @@ -18,7 +18,7 @@
*
* Community
* QQ Group: 623597263
* Latest Update: 2022.12.19 14:38 support Component Version of UnRegisterWhenGameObjectDestroyed
* Latest Update: 2023.3.10 10:40 IController Support ICanGetUtility
****************************************************************************/

using System;
Expand Down Expand Up @@ -236,7 +236,7 @@ public static class OnGlobalEventExtension
#region Controller

public interface IController : IBelongToArchitecture, ICanSendCommand, ICanGetSystem, ICanGetModel,
ICanRegisterEvent, ICanSendQuery
ICanRegisterEvent, ICanSendQuery,ICanGetUtility
{
}

Expand Down

0 comments on commit da7cbb0

Please sign in to comment.