Exemplo n.º 1
0
 void onChangeState(Redux.Store store)
 {
     this.todos            = (Item[])store.getState(Reducers.todos);
     this.visibilityFilter = (string)store.getState(Reducers.visibilityFilter);
 }
Exemplo n.º 2
0
 void onChangeState(Redux.Store store)
 {
     Debug.Log("sum: " + store.getState(Reducers.sumResult));
     Debug.Log("multiply: " + store.getState(Reducers.multiplyResult));
 }