1
0
KF2-Dev-Scripts/Core/Classes/HelpCommandlet.uc

21 lines
464 B
Ucode
Raw Normal View History

2020-12-13 15:01:13 +00:00
/**
* Copyright 1998-2013 Epic Games, Inc. All Rights Reserved.
*/
/** This commandlet finds and displays help information on other commandlets */
class HelpCommandlet extends Commandlet
native;
cpptext
{
virtual INT Main(const FString& Params);
}
/**
* Looks at the parameters and displays help based upon those parameters
*
* @param Params the string containing the parameters for the commandlet
*/
event int Main(string Params);