Skip to content

Instantly share code, notes, and snippets.

@wizard1066
Created April 6, 2020 14:58
Show Gist options
  • Save wizard1066/03621504b3e5f734b2fbdec747c831d6 to your computer and use it in GitHub Desktop.
Save wizard1066/03621504b3e5f734b2fbdec747c831d6 to your computer and use it in GitHub Desktop.
abgwtp23
func dropTargetV(info: DropInfo) -> Int? {
for squareno in 0..<rectIndex {
if stepperInst.stepperDB[squareno].stepRect != nil {
if stepperInst.stepperDB[squareno].stepRect!.contains(info.location) {
return squareno
}
}
}
return nil
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment