Class BaseEntityPool
Inheritance
System.Object
BaseEntityPool
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Assembly: AltV.Net.Client.dll
Syntax
public class BaseEntityPool : IBaseEntityPool
Constructors
|
Improve this Doc
View Source
BaseEntityPool(IEntityPool<IPlayer>, IEntityPool<IVehicle>, IEntityPool<IPed>)
Declaration
public BaseEntityPool(IEntityPool<IPlayer> playerPool, IEntityPool<IVehicle> vehiclePool, IEntityPool<IPed> pedPool)
Parameters
Methods
|
Improve this Doc
View Source
Get(IntPtr, BaseObjectType, out IEntity)
Declaration
public bool Get(IntPtr entityPointer, BaseObjectType baseObjectType, out IEntity entity)
Parameters
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
GetOrCreate(ICore, IntPtr, BaseObjectType, out IEntity)
Declaration
public bool GetOrCreate(ICore core, IntPtr entityPointer, BaseObjectType baseObjectType, out IEntity entity)
Parameters
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
GetOrCreate(ICore, IntPtr, BaseObjectType, UInt16, out IEntity)
Declaration
public bool GetOrCreate(ICore core, IntPtr entityPointer, BaseObjectType baseObjectType, ushort entityId, out IEntity entity)
Parameters
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
Remove(IEntity)
Declaration
public bool Remove(IEntity entity)
Parameters
Type |
Name |
Description |
IEntity |
entity |
|
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
Remove(IntPtr, BaseObjectType)
Declaration
public bool Remove(IntPtr entityPointer, BaseObjectType baseObjectType)
Parameters
Type |
Name |
Description |
IntPtr |
entityPointer |
|
BaseObjectType |
baseObjectType |
|
Returns
Type |
Description |
System.Boolean |
|
Implements