SHVDN
v3
An ASI plugin for Grand Theft Auto V, which allows running scripts written in any .NET language in-game. Developed by crosire https://github.com/crosire/scripthookvdotnet/
|
An output argument passed to a script function. More...
Public Member Functions | |
OutputArgument () | |
Initializes a new instance of the OutputArgument class for script functions that output data into pointers. More... | |
OutputArgument (object value) | |
Initializes a new instance of the OutputArgument class with an initial value for script functions that require the pointer to data instead of the actual data. More... | |
void | Dispose () |
T | GetResult< T > () |
Gets the value of data stored in this OutputArgument. More... | |
Protected Member Functions | |
virtual void | Dispose (bool disposing) |
An output argument passed to a script function.
GTA.Native.OutputArgument.OutputArgument | ( | ) |
Initializes a new instance of the OutputArgument class for script functions that output data into pointers.
GTA.Native.OutputArgument.OutputArgument | ( | object | value | ) |
Initializes a new instance of the OutputArgument class with an initial value for script functions that require the pointer to data instead of the actual data.
value | The value to set the data of this OutputArgument to. |
void GTA.Native.OutputArgument.Dispose | ( | ) |
|
protectedvirtual |
T GTA.Native.OutputArgument.GetResult< T > | ( | ) |
Gets the value of data stored in this OutputArgument.