/// /** * Battleship Shared Infrastructure * * Barrel export file that re-exports all shared types, constants, * and game logic for use by both pass-and-play and multiplayer patterns. */ // Re-export everything from shared modules export * from "./types.tsx"; export * from "./constants.tsx"; export * from "./game-logic.tsx";