import {EntityComponentDataset} from "../../../ecs/EntityComponentDataset";
import {System} from "../../../ecs/System";
import {GraphicsEngine} from "../../GraphicsEngine";
import {Camera} from "./Camera";

export class CameraSystem extends System<Camera> {
    constructor(engine: GraphicsEngine)

    public static getFirstActiveCamera(ecd: EntityComponentDataset): { entity: number, component: Camera | undefined }
}
