IPresenter.cs 436 B

123456789101112131415
  1. namespace Unity.Cloud.Collaborate.Presenters
  2. {
  3. internal interface IPresenter
  4. {
  5. /// <summary>
  6. /// Called when the view is ready to receive data. For example when it comes into view.
  7. /// </summary>
  8. void Start();
  9. /// <summary>
  10. /// Called when the view is no longer available to receive data. For example when it goes out of view.
  11. /// </summary>
  12. void Stop();
  13. }
  14. }