Add exports for GameEngine#shutDown
Signed-off-by: Tomas Slusny <slusnucky@gmail.com>
This commit is contained in:
@@ -51,4 +51,9 @@ public interface GameEngine
|
|||||||
* @return true if on the main thread, false otherwise
|
* @return true if on the main thread, false otherwise
|
||||||
*/
|
*/
|
||||||
boolean isClientThread();
|
boolean isClientThread();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Shut downs all open connections and files in client and serializes not serialized data.
|
||||||
|
*/
|
||||||
|
void shutDown();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -33,4 +33,7 @@ public interface RSGameEngine extends GameEngine, KeyFocusListener
|
|||||||
{
|
{
|
||||||
@Import("canvas")
|
@Import("canvas")
|
||||||
Canvas getCanvas();
|
Canvas getCanvas();
|
||||||
|
|
||||||
|
@Import("shutDown")
|
||||||
|
void shutDown();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user