gui/pkg/window/state.go
Snider ad3c63f093 feat(window): add Window struct, options, and Manager with CRUD
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-13 12:05:37 +00:00

11 lines
333 B
Go

// pkg/window/state.go
package window
// StateManager persists window positions to disk.
// Full implementation in Task 3.
type StateManager struct{}
func NewStateManager() *StateManager { return &StateManager{} }
// ApplyState restores saved position/size to a Window descriptor.
func (sm *StateManager) ApplyState(w *Window) {}