コード例 #1
0
ファイル: Camera.cs プロジェクト: Minatron/Minatron
 public void InvokeOnException(CameraExceptions exception)
 {
     if (IsFreeze) return;
     CameraExeption handler = OnException;
     if (handler != null) handler(exception);
 }
コード例 #2
0
ファイル: CameraPresenter.cs プロジェクト: Minatron/Minatron
 void Camera_OnException(CameraExceptions exception)
 {
     CameraException = exception;
     InvokePropertyChanged("CameraException");
 }