diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2016-01-27 21:58:12 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2016-01-27 22:26:28 +0100 |
commit | abf16a799322d57068aba3969e16fb6bbd7f784f (patch) | |
tree | ab11a9084b5fd6ae489e50cac0deaa7f58bf397b /html/src/ch | |
parent | 06e9e269c1eecb21a2c61d9bd6f2c1e43049fa55 (diff) | |
download | RustAndDust-abf16a799322d57068aba3969e16fb6bbd7f784f.zip RustAndDust-abf16a799322d57068aba3969e16fb6bbd7f784f.tar.gz |
remove project html
Diffstat (limited to 'html/src/ch')
3 files changed, 0 insertions, 45 deletions
diff --git a/html/src/ch/asynk/rustanddust/GdxDefinition.gwt.xml b/html/src/ch/asynk/rustanddust/GdxDefinition.gwt.xml deleted file mode 100644 index 08f74c0..0000000 --- a/html/src/ch/asynk/rustanddust/GdxDefinition.gwt.xml +++ /dev/null @@ -1,11 +0,0 @@ -<?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 rename-to="html">
- <inherits name='com.badlogic.gdx.backends.gdx_backends_gwt' /> - <inherits name='com.badlogic.gdx.physics.box2d.box2d-gwt' /> -
- <inherits name='RustAndDust' />
- <entry-point class='ch.asynk.rustanddust.client.HtmlLauncher' />
-
- <set-configuration-property name="gdx.assetpath" value="../android/assets" />
-</module>
diff --git a/html/src/ch/asynk/rustanddust/GdxDefinitionSuperdev.gwt.xml b/html/src/ch/asynk/rustanddust/GdxDefinitionSuperdev.gwt.xml deleted file mode 100644 index 1a592f2..0000000 --- a/html/src/ch/asynk/rustanddust/GdxDefinitionSuperdev.gwt.xml +++ /dev/null @@ -1,15 +0,0 @@ -<?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 rename-to="html">
- <inherits name='com.badlogic.gdx.backends.gdx_backends_gwt' /> - <inherits name='com.badlogic.gdx.physics.box2d.box2d-gwt' /> -
- <inherits name='RustAndDust' />
- <entry-point class='ch.asynk.rustanddust.client.HtmlLauncher' />
-
- <add-linker name="xsiframe"/>
- <set-configuration-property name='xsiframe.failIfScriptTag' value='FALSE'/>
- <set-configuration-property name="devModeRedirectEnabled" value="true"/>
-
- <set-configuration-property name="gdx.assetpath" value="../android/assets" />
-</module>
diff --git a/html/src/ch/asynk/rustanddust/client/HtmlLauncher.java b/html/src/ch/asynk/rustanddust/client/HtmlLauncher.java deleted file mode 100644 index a0e7ea0..0000000 --- a/html/src/ch/asynk/rustanddust/client/HtmlLauncher.java +++ /dev/null @@ -1,19 +0,0 @@ -package ch.asynk.rustanddust.client;
-
-import com.badlogic.gdx.ApplicationListener;
-import com.badlogic.gdx.backends.gwt.GwtApplication;
-import com.badlogic.gdx.backends.gwt.GwtApplicationConfiguration;
-import ch.asynk.rustanddust.RustAndDust;
-
-public class HtmlLauncher extends GwtApplication {
-
- @Override
- public GwtApplicationConfiguration getConfig () {
- return new GwtApplicationConfiguration(480, 320);
- }
-
- @Override
- public ApplicationListener getApplicationListener () {
- return new RustAndDust();
- }
-}
\ No newline at end of file |