IRuntimeGizmoComponent.cs 159 B

123456789
  1. using System;
  2. namespace Leap.Unity.RuntimeGizmos
  3. {
  4. public interface IRuntimeGizmoComponent
  5. {
  6. void OnDrawRuntimeGizmos(RuntimeGizmoDrawer drawer);
  7. }
  8. }