Module be.yildizgames.common.client
Interface DebugListener
-
- All Known Implementing Classes:
ConsoleDebugListener,NoDebugListener
public interface DebugListenerListener to get debug informations.- Author:
- Grégory Van den Borre
-
-
Field Summary
Fields Modifier and Type Field Description static DebugListenerEMPTY
-
Method Summary
Modifier and Type Method Description voiddisplayDebugMessage(Object message)Display a debug message.voidupdateFps(float fps)Update with the last debug information.
-
-
-
Field Detail
-
EMPTY
static final DebugListener EMPTY
-
-
Method Detail
-
updateFps
void updateFps(float fps)
Update with the last debug information. This is done once per frame.- Parameters:
fps- Current Frame per second rate.
-
displayDebugMessage
void displayDebugMessage(Object message)
Display a debug message.- Parameters:
message- Message to display.
-
-