IObjectSelectionUpdateOperation.cs 188 B

1234567891011
  1. #if UNITY_EDITOR
  2. namespace O3DWB
  3. {
  4. public interface IObjectSelectionUpdateOperation
  5. {
  6. #region Interface Methods
  7. void Perform();
  8. #endregion
  9. }
  10. }
  11. #endif