Removing old stored files

these files have nothing to do with the voxelengine, so I'm removing
them.
master
matortheeternal 2014-05-17 00:35:41 -07:00
parent 789deef27d
commit 7493466831
4 changed files with 0 additions and 59 deletions

Binary file not shown.

View File

@ -1,35 +0,0 @@
package store;
import java.applet.*;
import java.awt.*;
import java.awt.event.*;
public class Audioapp extends Applet implements ActionListener {
private AudioClip sound;
private Button playSound, loopSound, stopSound;
public void init() {
System.out.println(getCodeBase());
sound = getAudioClip(getCodeBase(), "menu.au");
playSound = new Button("Play");
playSound.addActionListener(this);
add(playSound);
loopSound = new Button("Loop");
loopSound.addActionListener(this);
add(loopSound);
stopSound = new Button("Stop");
stopSound.addActionListener(this);
add(stopSound);
}
public void actionPerformed(ActionEvent e) {
if (e.getSource() == playSound)
sound.play();
else if (e.getSource() == loopSound)
sound.loop();
else if (e.getSource() == stopSound)
sound.stop();
}
}

View File

@ -1,24 +0,0 @@
package store;
import java.awt.*;
import java.applet.*;
import java.net.*;
public class SimpleImageLoad extends Applet {
Image img;
URL coach;
public void init() {
try {
coach = new URL("http://www.cs.sbcc.cc.ca.us/~rhd/");
} catch (MalformedURLException e) {
showStatus("Exception: " + e.toString());
}
img = getImage(coach, "coach2c.gif");
}
public void paint(Graphics g) {
g.drawImage(img, 0, 0, this);
}
}