agentscape
Version:
Agentscape is a library for creating agent-based simulations. It provides a simple API for defining agents and their behavior, and for defining the environment in which the agents interact. Agentscape is designed to be flexible and extensible, allowing
13 lines (12 loc) • 345 B
TypeScript
declare class AnimationToolbar extends HTMLElement {
private playPauseBtnRef;
private stepBtnRef;
private fpsSetterRef;
private fpsDisplayRef;
private playPauseState;
connectedCallback(): void;
private handlePlayPauseClick;
private handleStepClick;
private handleFpsChange;
}
export default AnimationToolbar;