package org.andengine.engine.options;
/**
* (c) Zynga 2011
*
* @author Nicolas Gramlich <ngramlich@zynga.com>
* @since 23:13:07 - 22.11.2011
*/
public class MusicOptions {
// ===========================================================
// Constants
// ===========================================================
// ===========================================================
// Fields
// ===========================================================
private boolean mNeedsMusic;
// ===========================================================
// Constructors
// ===========================================================
// ===========================================================
// Getter & Setter
// ===========================================================
public boolean needsMusic() {
return this.mNeedsMusic;
}
public MusicOptions setNeedsMusic(final boolean pNeedsMusic) {
this.mNeedsMusic = pNeedsMusic;
return this;
}
// ===========================================================
// Methods for/from SuperClass/Interfaces
// ===========================================================
// ===========================================================
// Methods
// ===========================================================
// ===========================================================
// Inner and Anonymous Classes
// ===========================================================
}