Refactoring of subsystems and eventbus

This commit is contained in:
Ondřej Hruška
2014-04-01 00:55:43 +02:00
parent 6013a105ad
commit 4a1a84fd87
38 changed files with 801 additions and 512 deletions
+9 -2
View File
@@ -17,7 +17,7 @@ public interface AppAccess {
/**
* @return sound system
*/
abstract SoundSystem soundsys();
abstract SoundSystem snd();
/**
@@ -35,6 +35,13 @@ public interface AppAccess {
/**
* @return event bus
*/
abstract MessageBus msgbus();
abstract MessageBus bus();
/**
* Quit to OS<br>
* Destroy app & exit VM
*/
abstract void shutdown();
}