public override bool Initialize(GameHost host)
        {
            this.host = (IOSGameHost)host;

            view.HandlePresses           += handlePresses;
            application.HandleGsKeyEvent += handleGsKeyEvent;
            return(true);
        }
Exemple #2
0
 public IOSTextInput(IOSGameHost host, IOSGameView view)
 {
     this.host = host;
     this.view = view;
 }