Пример #1
0
    //List<RootManager<LocalModel,View,NetWorkModel>> RootManagerList  ;



    private void Start()
    {
        // RootManagerList = new List<RootManager<LocalModel, View, NetWorkModel>>();
        SimpleRootManager simpleRootManager = new SimpleRootManager(new SimpleLocalModel(), monoView, new SimpleNetModel());
    }
Пример #2
0
 public SimpleViewSendLocalData(SimpleRootManager manager, SimpleLocalModel L, SimpleMonoView V)
 {
     this.manager = manager;
 }
Пример #3
0
 public SimpleUpdateLocalModelByNetModel(SimpleRootManager manager, SimpleLocalModel L, SimpleNetModel N)
 {
     this.manager = manager;
 }
Пример #4
0
 public SimpleUpdateViewByLocalData(SimpleRootManager manager, SimpleMonoView V, SimpleLocalModel L)
 {
     this.manager = manager;
     V.BindingEvent(V.sendButton, SendLocalData);
     Debug.Log("binding");
 }