library MainFunctions initializer init
globals
private item getWalkable=null
private constant integer getWalkable_id='sehr'
endglobals
function IsPointWalkable takes real x,real y returns boolean
call SetItemPosition(getWalkable,x,y)
call SetItemVisible(getWalkable,false)
return GetItemX(getWalkable)==x and GetItemY(getWalkable)==y
endfunction
private function init takes nothing returns nothing
set getWalkable=CreateItem(getWalkable_id,0,0)
call SetItemVisible(getWalkable,false)
endfunction
endlibrary