Created
April 6, 2020 14:58
-
-
Save wizard1066/03621504b3e5f734b2fbdec747c831d6 to your computer and use it in GitHub Desktop.
abgwtp23
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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