8 lines
97 B
Go
8 lines
97 B
Go
|
package engine
|
||
|
|
||
|
type Window interface {
|
||
|
Destroy()
|
||
|
SwapBuffers()
|
||
|
ShouldClose() bool
|
||
|
}
|