dylanebert's picture
initial commit
794cf6c
|
raw
history blame
564 Bytes

Game Components

Game rendering and error display

Purpose

  • Render game canvas
  • Display game errors
  • Manage game lifecycle

Layout

game/
β”œβ”€β”€ context.md         # This file
β”œβ”€β”€ GameCanvas.svelte  # Game rendering canvas
└── GameError.svelte   # Error message display

Scope

  • In-scope: Game display, error UI
  • Out-of-scope: Game logic, physics

Entrypoints

  • GameCanvas.svelte - Main game rendering component

Dependencies

  • gameStore for game state
  • gameEngine service for lifecycle
  • uiStore for error state