Example implementation

This commit is contained in:
UnlegitDqrk
2026-02-28 16:00:29 +01:00
parent cda595907f
commit c1fb1353e0
4 changed files with 51 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
package org.openautonomousconnection.luascript.hosts;
import java.io.File;
public interface AudioHost {
void play(File audioFile);
}