Created Asteroids.jnlp to start the Asteroids game

This commit is contained in:
2012-04-15 19:28:32 -04:00
parent fee5a5bbf9
commit 365d465271

20
Asteroids.jnlp Executable file
View File

@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="1.0+" codebase="" href="">
<information>
<title>Asteroids</title>
<vendor>Richard Barrette</vendor>
</information>
<resources>
<!-- Application Resources -->
<j2se version="1.6+"
href="http://java.sun.com/products/autodl/j2se" />
<jar href="Asteroids.jar" main="true" />
</resources>
<applet-desc
name="Asteroids"
main-class="com.RickBarrette.asteroids.GameApplet"
width="1000"
height="800">
</applet-desc>
<update check="background"/>
</jnlp>