backend/internal/system/hierarchy.go

16 lines
224 B
Go
Raw Normal View History

2024-06-01 14:39:14 -06:00
package system
import "git.tebibyte.media/tomo/tomo"
type Hierarchy struct {
link WindowLink
}
type WindowLink interface {
GetWindow () tomo.Window
}
func (this *System) NewHierarchy (link WindowLink) *Hierarchy {
}