@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
20 lines (17 loc) • 419 B
JavaScript
/**
* @template T
*/
export class SoundMaterialSurfaceDetector {
constructor() {
}
/**
*
* @param {T} thing
* @param {Vector3} point
* @param {SoundMaterialInteractionType} interaction
* @returns {SoundAssetPlaybackSpec[]}
*/
detect(thing, point, interaction) {
throw new Error('Method must be overridden in the implementing class');
}
}