Class PoolObject
An object that resides in one of the available object pools.
Namespace: GTA
Assembly: ScriptHookVDotNet3.dll
Syntax
public abstract class PoolObject : INativeValue, IDeletable, IExistable
Constructors
|
Improve this Doc
View Source
PoolObject(Int32)
Declaration
protected PoolObject(int handle)
Parameters
Type |
Name |
Description |
Int32 |
handle |
|
Properties
|
Improve this Doc
View Source
Handle
The handle of the object.
Declaration
public int Handle { get; protected set; }
Property Value
|
Improve this Doc
View Source
NativeValue
The handle of the object translated to a native value.
Declaration
public ulong NativeValue { get; set; }
Property Value
Methods
|
Improve this Doc
View Source
Delete()
Declaration
public abstract void Delete()
|
Improve this Doc
View Source
Exists()
Declaration
public abstract bool Exists()
Returns
Implements