Nocturna
    Preparing search index...

    Interface AbstractState

    AbstractState defines the interface for state machine states.

    interface AbstractState {
        enter(): void;
        exit(): void;
        name(): string;
        update(dt: number, input: CharacterInput): AbstractState;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Methods