merge dev into test #33
@@ -1,14 +1,11 @@
|
||||
package pp.mdga.client;
|
||||
|
||||
import com.jme3.app.SimpleApplication;
|
||||
import com.jme3.system.JmeContext;
|
||||
import com.simsilica.lemur.GuiGlobals;
|
||||
import pp.mdga.client.acoustic.AcousticHandler;
|
||||
import pp.mdga.client.animation.AnimationHandler;
|
||||
import com.jme3.system.AppSettings;
|
||||
import pp.mdga.client.dialog.JoinDialog;
|
||||
import pp.mdga.client.view.*;
|
||||
import pp.mdga.message.server.ServerInterpreter;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.util.concurrent.ExecutorService;
|
||||
@@ -23,9 +20,6 @@ public class MdgaApp extends SimpleApplication {
|
||||
|
||||
private static Preferences prefs = Preferences.userNodeForPackage(JoinDialog.class);
|
||||
|
||||
/** Handles animations in the application. */
|
||||
private AnimationHandler animationHandler;
|
||||
|
||||
/** Handles acoustic effects and state-based sounds. */
|
||||
private AcousticHandler acousticHandler;
|
||||
|
||||
@@ -102,7 +96,6 @@ public void simpleInitApp() {
|
||||
|
||||
flyCam.setEnabled(false);
|
||||
|
||||
animationHandler = new AnimationHandler(this);
|
||||
acousticHandler = new AcousticHandler(this);
|
||||
notificationSynchronizer = new NotificationSynchronizer(this);
|
||||
inputSynchronizer = new InputSynchronizer(this);
|
||||
@@ -163,14 +156,6 @@ public void enter(MdgaState state) {
|
||||
view.enter();
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the animation handler.
|
||||
*
|
||||
* @return the {@link AnimationHandler} instance
|
||||
*/
|
||||
public AnimationHandler getAnimationHandler() {
|
||||
return animationHandler;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the acoustic handler.
|
||||
|
||||
Reference in New Issue
Block a user