mirror of
https://github.com/Facepunch/sbox-public.git
synced 2025-12-31 10:28:22 -05:00
This commit imports the C# engine code and game files, excluding C++ source code. [Source-Commit: ceb3d758046e50faa6258bc3b658a30c97743268]
18 lines
403 B
Modula-2
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 );
|
|
} |