Update gitignore

This commit is contained in:
Vulpovile
2025-04-09 21:55:29 -07:00
parent 0648a0178c
commit 4786cb7bd7
12 changed files with 769 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
package com.flaremicro.audio;
import java.net.URL;
public interface GameAudioSystem {
public void init();
public void destroy();
public void playbg(URL res);
public String play(URL res);
public void stopbg();
}