Skip to content

Commit 235c282

Browse files
committed
[修改]1. 修改事件上下文和事件桥对象为密封类
1 parent dff2c61 commit 235c282

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Runtime/Event/EventBridge.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace FairyGUI
88
/// <summary>
99
///
1010
/// </summary>
11-
class EventBridge
11+
sealed class EventBridge
1212
{
1313
public EventDispatcher owner;
1414

Runtime/Event/EventContext.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
namespace FairyGUI
55
{
66
/// <summary>
7-
///
7+
/// 事件上下文
88
/// </summary>
9-
public class EventContext
9+
public sealed class EventContext
1010
{
1111
/// <summary>
1212
/// 事件发送者。

0 commit comments

Comments
 (0)