Spaces:
Paused
Paused
File size: 495 Bytes
734f3d3 f95b0b5 68cf43c 734f3d3 68cf43c 734f3d3 68cf43c 734f3d3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import { Agent, AgentType } from "./types"
import { agent as ant } from "./ant"
import { agent as fish } from "./fish"
import { agent as fox } from "./fox"
import { agent as smith } from "./smith"
import { agent as city } from "./city"
import { agent as dungeon } from "./dungeon"
export const agents = { ant, fish, fox, smith, city, dungeon }
export const defaultAgent: AgentType = "dungeon"
export const getAgent = (type?: AgentType) => agents[type || defaultAgent] || agents[defaultAgent] |