some javadoc fixes

master
Ondřej Hruška 10 years ago
parent d3f392d689
commit c5fa77d395
  1. 14
      src/mightypork/gamecore/backend/Backend.java

@ -8,22 +8,22 @@ import mightypork.utils.eventbus.clients.BusNode;
/** /**
* Application backend interface (set of core modules).<br> * Application backend interface (set of core modules).<br>
* Backend is created without a bus access, which will be assigned during app * The goal of this abstraction is to allow easy migration to different
* initialization. * environment with different libraries etc. It should be as simple as using
* different backend.
* *
* @author MightyPork * @author MightyPork
*/ */
public abstract class Backend extends BusNode { public abstract class Backend extends BusNode {
/** /**
* Initialize backend modules, add them to event bus.<br> * Initialize backend modules, add them to event bus.
* Event bus must already be available in the BusAccess.
*/ */
public abstract void initialize(); public abstract void initialize();
/** /**
* Get graphics module (renderer) * Get graphics module (screen manager, texture and font loader, renderer)
* *
* @return graphics module * @return graphics module
*/ */
@ -31,9 +31,9 @@ public abstract class Backend extends BusNode {
/** /**
* Get graphics module (renderer) * Get audio module (
* *
* @return graphics module * @return audio module
*/ */
public abstract AudioModule getAudio(); public abstract AudioModule getAudio();
} }

Loading…
Cancel
Save