Files
sbox-public/engine/Definitions/tools/GameData/HelperInfo.def
s&box team 71f266059a Open source release
This commit imports the C# engine code and game files, excluding C++ source code.

[Source-Commit: ceb3d758046e50faa6258bc3b658a30c97743268]
2025-11-24 09:05:18 +00:00

18 lines
403 B
Modula-2

#include "fgdlib/helperinfo.h"
// All this class does is hold a buncha strings
native class CHelperInfo as Native.CHelperInfo
{
void DeleteThis(); [delete]
static CHelperInfo Create(); [new]
string GetName();
void SetName( string name );
bool AddParameter( string parameter );
void SetKV3ParameterData( KeyValues3 pCopyFrom );
int GetParameterCount();
string GetParameter( int index );
}