import type { Ped } from "./Ped";
import type { Prop } from "./Prop";
import type { Vehicle } from "./Vehicle";
export type Entity = Vehicle | Ped | Prop | null;
