• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Main repository of MikuMikuStudio


Commit MetaInfo

Revisionacc73c6be86ee517f0588b77324e25daa45ebb03 (tree)
Time2003-10-25 11:27:53
AuthorAnakan <Anakan@75d0...>
CommiterAnakan

Log Message

*** empty log message ***

git-svn-id: http://jmonkeyengine.googlecode.com/svn/trunk@109 75d07b2b-3a1a-0410-a2c5-0572b91ccdca

Change Summary

  • delete: src/com/jme/test/sound/TestSound.java

Incremental Difference

--- a/src/com/jme/test/sound/TestSound.java
+++ /dev/null
@@ -1,23 +0,0 @@
1-/*
2- * Created on 18 oct. 2003
3- *
4- */
5-package com.jme.test.sound;
6-
7-import com.jme.sound.SoundSystem;
8-
9-/**
10- * @author Arman Ozcelik
11- *
12- */
13-public class TestSound {
14-
15- public static void main(String[] args) throws Exception {
16- SoundSystem system=SoundSystem.getSoundSystem("LWJGL");
17- system.createSoundSystem(1, 1);
18- system.getRenderer().loadWaveAs("test", "data/sound/Battle.wav", 0);
19- system.getRenderer().play("test");
20- Thread.sleep(5000);
21- }
22-
23-}