mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2026-04-06 23:14:19 +00:00
mod: updated to create/destroy architecture
This commit is contained in:
parent
760cda8c47
commit
c08e72d615
4 changed files with 195 additions and 23 deletions
|
|
@ -71,8 +71,28 @@ public abstract class BasicTest {
|
|||
*/
|
||||
public BasicTest() {
|
||||
al = new AL();
|
||||
try {
|
||||
al.create();
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
return;
|
||||
}
|
||||
|
||||
alc = new ALC();
|
||||
try {
|
||||
alc.create();
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
return;
|
||||
}
|
||||
|
||||
alut = new ALUT();
|
||||
try {
|
||||
alut.create();
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue