예제 #1
0
        private void OnAddCallLate(INoticeBase <int> param)
        {
            if (IsDisposed)
            {
                return;
            }

            ParamNotice <Action <int> > notice = param as ParamNotice <Action <int> >;

            mTicksLater.CallLater(notice.ParamValue);
        }
예제 #2
0
 public void CallLater(Action <int> method)
 {
     mTicksLater.CallLater(method);
 }