6 lines
104 B
Go
6 lines
104 B
Go
package ui
|
|
|
|
type IWindow interface {
|
|
CreateWindow(title string, width, height float32, visible bool)
|
|
}
|