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

16 lines
760 B
Ucode

//=============================================================================
// KFInterface_MinigameActor
//=============================================================================
// Interface for any code-facing minigame actors.
//=============================================================================
// Killing Floor 2
// Copyright (C) 2015 Tripwire Interactive LLC
// - Dan Weiss
//=============================================================================
interface KFInterface_MinigameActor;
function bool CanBeActivated(KFTrigger_MinigameButton ActivationSource);
function Activated(KFTrigger_MinigameButton ActivationSource);
function Deactivated();
simulated event bool CanPlayAkEvent(Actor inOwner, name BoneName);