예제 #1
0
        public void DecrementCount()
        {
            var count = this.m_state.Count;

            count--;
            this.m_state = new CounterState(count);
            BroadcastStateChanged();
        }
예제 #2
0
 public CounterStore()
 {
     m_state = new CounterState(0);
 }