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

13 lines (11 loc) 285 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 }