mirror of
https://github.com/zeldaret/tp
synced 2026-05-24 07:11:06 -04:00
17 lines
427 B
C++
17 lines
427 B
C++
//
|
|
// JAUClusterSound
|
|
//
|
|
|
|
#include "JSystem/JSystem.h" // IWYU pragma: keep
|
|
|
|
#include "JSystem/JAudio2/JAUClusterSound.h"
|
|
#include "JSystem/JAudio2/JAISoundHandles.h"
|
|
#include "JSystem/JAudio2/JAISoundStarter.h"
|
|
|
|
// Dummy function to generate JAISoundHandle::JAISoundHandle
|
|
static void dummyCtor() {
|
|
JASGlobalInstance<JAISoundStarter>::getInstance();
|
|
JAISoundHandle dummy[20];
|
|
JAISoundHandles handles(dummy, 20);
|
|
}
|