yolkbot
    Preparing search index...

    Interface GameMap

    A Map with additional information needed for a game

    interface GameMap {
        availability: "private" | "both";
        filename: string;
        hash: string;
        index: number;
        modes: MapModes;
        name: string;
        raw?: MapJSON;
    }

    Hierarchy

    Index

    Properties

    availability: "private" | "both"

    Whether the map is available in private only or pubs & privs

    filename: string

    The filename of the map

    hash: string

    A hash used for cachebusting

    index: number
    modes: MapModes

    The modes the map may be used in

    name: string

    The stylized map name

    raw?: MapJSON