import { GridCharacterState } from "./GridCharacter/GridCharacterState.js";
export interface GridEngineState {
    characters: GridCharacterState[];
}
