Capture.cs 361 B

12345678910111213
  1. namespace Mirror
  2. {
  3. public interface Capture
  4. {
  5. // server timestamp at time of capture.
  6. double timestamp { get; set; }
  7. // optional gizmo drawing for visual debugging.
  8. // history is only known on the server, which usually doesn't render.
  9. // showing Gizmos in the Editor is enough.
  10. void DrawGizmo();
  11. }
  12. }