Sort functions
This commit is contained in:
parent
47e7d1baea
commit
93ec54f81f
3 changed files with 19 additions and 7 deletions
|
@ -62,6 +62,11 @@ func IsCursorHidden() bool {
|
|||
return false
|
||||
}
|
||||
|
||||
// IsCursorOnScreen - Check if cursor is on the current screen.
|
||||
func IsCursorOnScreen() bool {
|
||||
return false
|
||||
}
|
||||
|
||||
// EnableCursor - Enables cursor
|
||||
func EnableCursor() {
|
||||
return
|
||||
|
|
|
@ -46,6 +46,13 @@ func IsCursorHidden() bool {
|
|||
return v
|
||||
}
|
||||
|
||||
// IsCursorOnScreen - Check if cursor is on the current screen.
|
||||
func IsCursorOnScreen() bool {
|
||||
ret := C.IsCursorOnScreen()
|
||||
v := bool(ret)
|
||||
return v
|
||||
}
|
||||
|
||||
// EnableCursor - Enables cursor
|
||||
func EnableCursor() {
|
||||
C.EnableCursor()
|
||||
|
|
|
@ -46,6 +46,13 @@ func IsCursorHidden() bool {
|
|||
return v
|
||||
}
|
||||
|
||||
// IsCursorOnScreen - Check if cursor is on the current screen.
|
||||
func IsCursorOnScreen() bool {
|
||||
ret := C.IsCursorOnScreen()
|
||||
v := bool(ret)
|
||||
return v
|
||||
}
|
||||
|
||||
// EnableCursor - Enables cursor
|
||||
func EnableCursor() {
|
||||
C.EnableCursor()
|
||||
|
@ -90,10 +97,3 @@ func OpenAsset(name string) (Asset, error) {
|
|||
}
|
||||
return f, nil
|
||||
}
|
||||
|
||||
// IsCursorOnScreen - Check if cursor is on the current screen.
|
||||
func IsCursorOnScreen() bool {
|
||||
ret := C.IsCursorOnScreen()
|
||||
v := bool(ret)
|
||||
return v
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue