All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.badlogic.gdx.backends.iosrobovm.IOSInput Maven / Gradle / Ivy

The newest version!

package com.badlogic.gdx.backends.iosrobovm;

import com.badlogic.gdx.Input;

import org.robovm.apple.uikit.UIKey;

public interface IOSInput extends Input {

	/** Initializes peripherals (such as compass or accelerometer) */
	void setupPeripherals ();

	/** Records touch events */
	void onTouch (long touches);

	/** Process all touch events that have been registered on #onTouch(). */
	void processEvents ();

	boolean onKey (UIKey key, boolean down);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy