mirror of
https://github.com/edubart/otclient.git
synced 2025-04-30 01:29:21 +02:00
10 lines
193 B
Lua
10 lines
193 B
Lua
Mouse = {}
|
|
|
|
function Mouse.setTargetCursor()
|
|
g_window.setMouseCursor('/core_styles/icons/targetcursor.png', {x=9,y=9})
|
|
end
|
|
|
|
function Mouse.restoreCursor()
|
|
g_window.restoreMouseCursor()
|
|
end
|