mirror of
https://github.com/BigJk/crt.git
synced 2026-02-06 10:47:25 +00:00
28 lines
413 B
Go
28 lines
413 B
Go
package crt
|
|
|
|
type EmptyAdapter struct{}
|
|
|
|
func NewEmptyAdapter() *EmptyAdapter {
|
|
return &EmptyAdapter{}
|
|
}
|
|
|
|
func (e *EmptyAdapter) HandleMouseButton(button MouseButton) {
|
|
|
|
}
|
|
|
|
func (e *EmptyAdapter) HandleMouseMotion(motion MouseMotion) {
|
|
|
|
}
|
|
|
|
func (e *EmptyAdapter) HandleMouseWheel(wheel MouseWheel) {
|
|
|
|
}
|
|
|
|
func (e *EmptyAdapter) HandleKeyPress() {
|
|
|
|
}
|
|
|
|
func (e *EmptyAdapter) HandleWindowSize(size WindowSize) {
|
|
|
|
}
|