PokéRogue
    Preparing search index...
    interface MockGameObject {
        active: boolean;
        name: string;
        destroy?(): void;
        setActive(active: boolean): this;
        setName(name: string): this;
    }

    Implemented by

    Index

    Properties

    active: boolean
    name: string

    Methods