I am using libgdx and getting a error. I am not sure what this error means and how can I fix this?
error:
GwtDefintion.gw t.xml
MyGdxGame.gwt.x ml
error:
Code:
[ERROR] [com.ia.asteroid.GwtDefinition] - Line 41: No source code is available for type java.awt.geom.Line2D.Float; did you forget to inherit a required module? [ERROR] [com.ia.asteroid.GwtDefinition] - Line 42: No source code is available for type java.awt.geom.Point2D.Float; did you forget to inherit a required module?
GwtDefintion.gw t.xml
Code:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit trunk//EN" "http://google-web-toolkit.googlecode.com/svn/trunk/distro-source/core/src/gwt-module.dtd">
<module>
<inherits name='com.badlogic.gdx.backends.gdx_backends_gwt' />
<inherits name='MyGdxGame' />
<entry-point class='com.ia.asteroid.client.GwtLauncher' />
<set-configuration-property name="gdx.assetpath"
value="../Asteroid-android/assets" />
</module>
Code:
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit trunk//EN" "http://google-web-toolkit.googlecode.com/svn/trunk/distro-source/core/src/gwt-module.dtd"> <module> <source path="com/ia/asteroid" /> <source path="com/ia/Entity" /> <source path="com/ia/GameStates" /> <source path="com/ia/managers" /> </module>
Comment