using UnityEngine; namespace QFSW.QC.Actions { /// /// Waits until the given key is pressed. /// public class WaitKey : WaitUntil { /// The key to wait for. public WaitKey(KeyCode key) : base(() => InputHelper.GetKeyDown(key)) { } } }