Add actor sheet implementation using Foundry VTT v13 ApplicationV2 API: - Base actor sheet class with tab navigation, drag-drop, scroll preservation - Character sheet with header, main tab (stats, saves, skills, attacks) - NPC sheet structure (templates only, styling pending) - Resource bars with fill effect and backdrop pills for legibility - Responsive layout using CSS Container Queries - Fix for ApplicationV2 tab switching (cleanup stale parts) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
9 lines
316 B
JavaScript
9 lines
316 B
JavaScript
/**
|
|
* Sheet Classes Module
|
|
* Exports all actor and item sheet classes for the Vagabond RPG system.
|
|
*/
|
|
|
|
export { default as VagabondActorSheet } from "./base-actor-sheet.mjs";
|
|
export { default as VagabondCharacterSheet } from "./character-sheet.mjs";
|
|
export { default as VagabondNPCSheet } from "./npc-sheet.mjs";
|