package org.anddev.andengine.engine.options;
/**
* (c) 2010 Nicolas Gramlich
* (c) 2011 Zynga Inc.
*
* @author Nicolas Gramlich
* @since 16:03:09 - 08.09.2010
*/
public class TouchOptions {
// ===========================================================
// Constants
// ===========================================================
// ===========================================================
// Fields
// ===========================================================
private boolean mRunOnUpdateThread;
// ===========================================================
// Constructors
// ===========================================================
// ===========================================================
// Getter & Setter
// ===========================================================
public TouchOptions enableRunOnUpdateThread() {
return this.setRunOnUpdateThread(true);
}
public TouchOptions disableRunOnUpdateThread() {
return this.setRunOnUpdateThread(false);
}
public TouchOptions setRunOnUpdateThread(final boolean pRunOnUpdateThread) {
this.mRunOnUpdateThread = pRunOnUpdateThread;
return this;
}
/**
* <u><b>Default:</b></u> <code>true</code>
*/
public boolean isRunOnUpdateThread() {
return this.mRunOnUpdateThread;
}
// ===========================================================
// Methods for/from SuperClass/Interfaces
// ===========================================================
// ===========================================================
// Methods
// ===========================================================
// ===========================================================
// Inner and Anonymous Classes
// ===========================================================
}