예제 #1
0
 public void Add(KeySequenceDetector detector)
 {
     keySequenceDetectors.Add(detector);
 }
예제 #2
0
    public CheatManager()
    {
        var detector = new KeySequenceDetector("T C D", EnableCheating);

        KeyboardController.Instance.Add(detector);
    }
예제 #3
0
 public void Remove(KeySequenceDetector detector)
 {
     keySequenceDetectors.Remove(detector);
 }