rem: alutInit and exit gone

This commit is contained in:
Brian Matzon 2002-12-14 12:42:19 +00:00
parent 8c0c280a12
commit aaa0bbab42
1 changed files with 2 additions and 14 deletions

View File

@ -54,8 +54,8 @@ public class ALUT {
}
/**
* Override to provide any initialization code after creation.
*/
* Override to provide any initialization code after creation.
*/
protected void init() {
}
@ -106,13 +106,6 @@ public class ALUT {
*/
protected native void nDestroy();
/**
* Initializes the OpenAL engine
*
* @param args String array of arguments to engine
*/
public native void init(String[] args);
/**
* Loads a wave file into memory
*
@ -138,9 +131,4 @@ public class ALUT {
* @param freq frequency of the data
*/
public native void unloadWAV(int format, int data, int size, int freq);
/**
* Deinitializes the OpenAL engine
*/
public native void exit();
}