Spaces:
Running
Running
File size: 473 Bytes
3ef6bd6 67f4321 3ef6bd6 26cb5c0 8eac3eb 3ef6bd6 67f4321 | 1 2 3 4 5 6 7 8 9 10 11 12 | // Tiny Army persona panel — mounted by tiny.js into #persona-stage. It's just the shared hero
// creator (heroCreator.js — recruit/stream/edit/voice/portrait, autosaved) with its barracks roster
// of saved heroes enabled.
import { mountHeroCreator, CLASS_SLUG } from '/web/heroCreator.js'
// Re-exported so existing importers (tiny.js) keep working.
export { CLASS_SLUG }
export function mountPersonaPanel(host) {
mountHeroCreator(host, { showBarracks: true })
}
|