yolkbot
    Preparing search index...

    Interface Collectible

    An individual collectible item on the map (ammo or grenade)

    interface Collectible {
        id: number;
        x: number;
        y: number;
        z: number;
    }

    Hierarchy

    Index

    Properties

    id x y z

    Properties

    id: number

    The collectible "ID". This may be overwriten by a new collectible after one has been picked up

    x: number

    The X coordinate

    y: number

    The Y coordinate

    z: number

    The Z coordinate