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

UnrealScriptTest.Test0024_Commandlet


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
/**
 * Driver commandlet for testing delegate boolean comparison functionality.
 *
 * Copyright 2007 Epic Games, Inc. All Rights Reserved
 */
class Test0024_Commandlet extends TestCommandletBase;

delegate CommandletDelegate( int i )
{
	LogInternal("here i am in the commandlet delegate!");
}

event int Main( string Parms )
{
	local Test0024_DelegateComparison TestObj;

	TestObj = new class'Test0024_DelegateComparison';

	TestObj.DelegateExample(Self);
	return 0;
}

function CommandletDelegateFunction( int Param1 )
{
	LogInternal("CommandletDelegateFunction - Param1:" $ Param1);
}

defaultproperties
{
   LogToConsole=True
   Name="Default__Test0024_Commandlet"
   ObjectArchetype=TestCommandletBase'UnrealScriptTest.Default__TestCommandletBase'
}

Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames
Class file time: tr 31-1-2018 17:18:34.000 - Creation time: sk 18-3-2018 10:01:15.608 - Created with UnCodeX