Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |
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 |
// ==================================================================== // (C) 2002, Epic Games // // // The GUIUserModInfo is a class that allows mod authors to create TC/Mod records // for their mods. Users can then activate the mod from the User Mods menu. // // Mod authors subclass this actor in their package. They then need // to add the following line to their .INT file // // Object=(Class=Class,MetaClass=GUI2K4.GUIUserModInfo,Name=ModPackageName.CustomModInfoClassName) // // // ModName is the name of the mod. It will appear in the list of mods. // ModInfo is the text to display in the Mod Info box. // ModLogo is the string name of an image to use as a logo for the mod // ModCmdLine is the command line parameters to use when activating the mod // // ==================================================================== class GUIUserModInfo extends GUI Abstract; var localized string ModName; var localized string ModInfo; var localized string ModLogo; var localized string ModCmdLine; defaultproperties { } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |