Esempio n. 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());
    }
Esempio n. 2
0
 public SimpleViewSendLocalData(SimpleRootManager manager, SimpleLocalModel L, SimpleMonoView V)
 {
     this.manager = manager;
 }
Esempio n. 3
0
 public SimpleUpdateLocalModelByNetModel(SimpleRootManager manager, SimpleLocalModel L, SimpleNetModel N)
 {
     this.manager = manager;
 }
Esempio n. 4
0
 public SimpleUpdateViewByLocalData(SimpleRootManager manager, SimpleMonoView V, SimpleLocalModel L)
 {
     this.manager = manager;
     V.BindingEvent(V.sendButton, SendLocalData);
     Debug.Log("binding");
 }