Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames

UTPlusStandaloneHitSounds.UTPlusEventForwarder


00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
/******************************************************************************
Forwards a trigger/untrigger event via delegates. This class is practically the
same as the Jailbreak.JBProbeEvent actor, I just didn't feel like copy/pasting
it for "religious" reasons. ;-)

Creation date: 2010-06-11 00:39
Last change: $Id$
Copyright © 2010, Wormbo
Website: http://www.koehler-homepage.de/Wormbo/
Feel free to reuse this code. Send me a note if you found it helpful or want
to report bugs/provide improvements.
Please ask for permission first, if you intend to make money off reused code.
******************************************************************************/

class UTPlusEventForwarder extends Info;


delegate OnTrigger(Actor Origin, Pawn Causer);
delegate OnUnTrigger(Actor Origin, Pawn Causer);

function Trigger(Actor Origin, Pawn Causer)
{
	OnTrigger(Origin, Causer);
}
function UnTrigger(Actor Origin, Pawn Causer)
{
	OnUnTrigger(Origin, Causer);
}


//=============================================================================
// Default values
//=============================================================================

defaultproperties
{
}


Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames
Class file time: Fr 11.6.2010 00:45:22.000 - Creation time: Sa 23.8.2014 09:19:04.567 - Created with UnCodeX