This commit is contained in:
Michael Smith
2025-08-07 16:03:52 +02:00
parent 5c52038776
commit 4c224a51ec
6 changed files with 501 additions and 119 deletions

14
ui/view.go Normal file
View File

@@ -0,0 +1,14 @@
package ui
import (
"gb-player/gb"
)
type View struct {
controller *Controller
console *gb.Console
}
func NewView(controller *Controller, console *gb.Console) *View {
return &View{controller, console}
}