UNPKG

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

5 lines (4 loc) 264 B
import Agent, { type AgentConstructor } from './Agent'; import Particle, { type ParticleConstructor } from './Particle'; import Cell, { type CellConstructor } from './Cell'; export { Agent, AgentConstructor, Cell, CellConstructor, Particle, ParticleConstructor };