Ejemplo n.º 1
0
func (h *HGE) Input_GetMouseWheel() int {
	return input.NewMouse(0, 0).WheelMovement()
}
Ejemplo n.º 2
0
func (h *HGE) Input_IsMouseOver() bool {
	return input.NewMouse(0, 0).IsOver()
}
Ejemplo n.º 3
0
func (h *HGE) Input_GetMousePos() (x, y float64) {
	return input.NewMouse(0, 0).Pos()
}