1
0
KF2-Dev-Scripts/Engine/Classes/AkBaseSoundObject.uc

13 lines
375 B
Ucode
Raw Permalink Normal View History

2020-12-13 15:01:13 +00:00
/**
* Common Base class for AkEvents and SoundCues.
* The goal is mainly to reduce the footprint in the integration.
*/
class AkBaseSoundObject extends Object
native
abstract;
cpptext
{
virtual UBOOL IsAudible( const FVector& SourceLocation, const FVector& ListenerLocation, AActor* SourceActor, INT& bIsOccluded, UBOOL bCheckOcclusion ) {return FALSE;}
}