浏览代码

Merge pull request #211 from Unity-Technologies/zgh/change_class_type

change class  protection level
/main
GitHub 3 年前
当前提交
b6a47a4e
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 6
      com.unity.uiwidgets/Runtime/widgets/actions.cs

6
com.unity.uiwidgets/Runtime/widgets/actions.cs


class CallbackAction : UiWidgetAction {
public class CallbackAction : UiWidgetAction {
public CallbackAction(LocalKey intentKey, OnInvokeCallback onInvoke) : base(intentKey: intentKey) {
D.assert(onInvoke != null);
this.onInvoke = onInvoke;

}
class ActionDispatcher : Diagnosticable {
public class ActionDispatcher : Diagnosticable {
public ActionDispatcher() {
}

}
}
class Actions : InheritedWidget {
public class Actions : InheritedWidget {
public Actions(
Key key = null,
ActionDispatcher dispatcher = null,

正在加载...
取消
保存