예제 #1
0
        public void Update()
        {
            foreach (KeyValuePair <Key, KeyBinding> kvp in keyBindings)
            {
                KeyBinding kb = kvp.Value;

                if (kb.State)
                {
                    kb.Operation();
                }
            }
        }