GameEngine/pkg/engine/ports/window.go

8 lines
97 B
Go
Raw Normal View History

2024-09-16 17:47:12 +00:00
package engine
type Window interface {
Destroy()
SwapBuffers()
ShouldClose() bool
}