private GameKeybindActor(GameKeybindActorType type, ref GameController controller)
        {
            _type       = type;
            _controller = controller;

            _keybindHost = null;

            Parameter = new object[0];
        }
 public void ConnectHost(GameKeybindHost host)
 {
     _keybindHost = host;
 }