1
0
KF2-Dev-Scripts/Engine/Classes/AkBaseSoundObject.uc
2020-12-13 18:01:13 +03:00

13 lines
375 B
Ucode

/**
* 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;}
}