´remove garbage

This commit is contained in:
kookroach
2021-04-04 21:53:51 +02:00
parent 8b21742d64
commit fa81b7fc79
3 changed files with 4 additions and 57 deletions

View File

@@ -6,7 +6,6 @@
players: IPlayerPool;
vehicles: IVehiclePool;
attachments: IEntityAttachmentPool;
objects: IObjectPool;
disableDefaultEngineBehaviour(): void;
}
@@ -56,9 +55,6 @@ interface IPlayer extends IEntity {
nametagColor: number;
}
interface IObject extends IEntity {
__attachmentData: object;
}
interface IEntityAttachments {
remoteId: any;
@@ -80,9 +76,6 @@ interface IEntityPool<TEntity> {
forEach(fn: (entity: TEntity) => void): void;
}
interface IObjectPool extends IEntityPool<IObject> {
setData(entity: ObjectMp): void;
}
interface IPlayerPool extends IEntityPool<IPlayer> {
local: IPlayer;
@@ -159,7 +152,6 @@ export {
IBrowser,
IPlayer,
IObject,
IEntityAttachments,
IEntityAttachmentPool,
IVehicle,
@@ -167,7 +159,6 @@ export {
IEntityPool,
IPlayerPool,
IVehiclePool,
IObjectPool,
EventName,
Key,