123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using JetBrains.Annotations;
- using Unity.Cloud.Collaborate.UserInterface;
- namespace Unity.Cloud.Collaborate.Models
- {
- internal interface IModel
- {
-
-
-
- event Action StateChanged;
-
-
-
- void OnStart();
-
-
-
- void OnStop();
-
-
-
-
- void RestoreState([NotNull] IWindowCache cache);
-
-
-
-
- void SaveState([NotNull] IWindowCache cache);
- }
- }
|