Back to project page killingspree.
The source code is released under:
MIT License
If you think the Android project killingspree listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.sillygames.killingSpree.desktop; /* w w w . ja v a 2 s . c om*/ import com.badlogic.gdx.Gdx; import com.sillygames.killingSpree.PlatformServices; public class DesktopServices implements PlatformServices { @Override public void toast(String message) { Gdx.app.log("Toast", message); } @Override public void shortToast(String message) { Gdx.app.log("Toast", message); } }