GameBoy\Keyboard::__construct PHP Method

__construct() public method

public __construct ( Core $core )
$core Core
    public function __construct(Core $core)
    {
        $this->core = $core;
        exec('stty -icanon -echo');
        $this->file = fopen('php://stdin', 'r');
        stream_set_blocking($this->file, false);
    }