rock-mod
Version:
Rock-Mod is a powerful framework designed for creating and managing mods for Grand Theft Auto (GTA) games.
12 lines (11 loc) • 740 B
TypeScript
import { type IWorldObjectsManager } from "../../common";
import { type IRageBaseObjectsManagerOptions, RageBaseObjectsManager } from "../baseObject/RageBaseObjectsManager";
import { type RageWorldObject } from "./RageWorldObject";
import { RageWorldObjectsIterator } from "./RageWorldObjectsIterator";
export interface IRageWorldObjectsManagerOptions extends IRageBaseObjectsManagerOptions {
}
export declare abstract class RageWorldObjectsManager<T extends RageWorldObject<EntityMp>> extends RageBaseObjectsManager<T> implements IWorldObjectsManager<T> {
protected readonly _iterator: RageWorldObjectsIterator<T>;
get iterator(): RageWorldObjectsIterator<T>;
protected constructor(options: IRageWorldObjectsManagerOptions);
}