Back to project page libgdx-chat-example.
The source code is released under:
Apache License
If you think the Android project libgdx-chat-example 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 org.stofkat.chat.html; /*from w ww . jav a2s . c o m*/ import com.badlogic.gdx.ApplicationListener; import com.badlogic.gdx.backends.gwt.GwtApplication; import com.badlogic.gdx.backends.gwt.GwtApplicationConfiguration; public class ChatHtml extends GwtApplication { @Override public ApplicationListener getApplicationListener () { return new HtmlChat(); } @Override public GwtApplicationConfiguration getConfig () { return new GwtApplicationConfiguration(480, 320); } }