public static interface

Scene.IOnSceneTouchListener

org.anddev.andengine.entity.scene.Scene.IOnSceneTouchListener
Known Indirect Subclasses

Class Overview

An interface for a callback to be invoked when a TouchEvent is dispatched to a Scene. The callback will be invoked after all Scene.ITouchAreas have been checked and none consumed the TouchEvent.

Summary

Public Methods
abstract boolean onSceneTouchEvent(Scene pScene, TouchEvent pSceneTouchEvent)
Called when a TouchEvent is dispatched to a Scene.

Public Methods

public abstract boolean onSceneTouchEvent (Scene pScene, TouchEvent pSceneTouchEvent)

Called when a TouchEvent is dispatched to a Scene.

Parameters
pScene The Scene that the TouchEvent has been dispatched to.
pSceneTouchEvent The TouchEvent object containing full information about the event.
Returns