Advertisement
Guest User

Untitled

a guest
Apr 3rd, 2020
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.23 KB | None | 0 0
  1. public class ExampleView : MonoBehaviour
  2. {
  3.     public void ShowWarning(Warning w){...}
  4. }
  5.  
  6. public class ExampleMediator : Mediator<ExampleView>
  7. {
  8.     void Initialize()
  9.     {
  10.         importantWarningsStream.Subscribe(view.ShowWarning);
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement