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

Jailbreak.JBProbeEvent


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
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
// ============================================================================
// JBProbeEvent
// Copyright 2002 by Mychaeel <mychaeel@planetjailbreak.com>
// $Id: JBProbeEvent.uc,v 1.3 2004/02/16 17:17:02 mychaeel Exp $
//
// Forwards handling of an event with a given Tag to another class.
// ============================================================================


class JBProbeEvent extends Actor
  notplaceable;


// ============================================================================
// Delegates
// ============================================================================

delegate OnTrigger  (Actor ActorOther, Pawn PawnInstigator);
delegate OnUnTrigger(Actor ActorOther, Pawn PawnInstigator);


// ============================================================================
// Trigger
//
// Forwards triggering event to the delegate.
// ============================================================================

event Trigger(Actor ActorOther, Pawn PawnInstigator)
{
  OnTrigger(ActorOther, PawnInstigator);
}


// ============================================================================
// UnTrigger
//
// Forwards untriggering event to the delegate.
// ============================================================================

event UnTrigger(Actor ActorOther, Pawn PawnInstigator)
{
  OnUnTrigger(ActorOther, PawnInstigator);
}


// ============================================================================
// Defaults
// ============================================================================

defaultproperties
{
  bHidden = True;
}

Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames
Class file time: Mo 23.5.2005 10:54:36.000 - Creation time: Do 14.8.2014 09:58:42.978 - Created with UnCodeX