yolkbot
    Preparing search index...

    Interface GameMap

    A Map with additional information needed for a game

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

    Hierarchy

    Index

    Properties

    availability: "public" | "private" | "both"
    filename: string
    hash: string
    index: number
    modes: MapModes
    name: string
    raw?: MapJSON