Collision detection in vb.net
问题 I am trying to recreate Copter in visual basic, so far I have the player, roof and helicopter but I can't seem to get the game to end when the player touches the floor or roof. Sorry for posting so much, this is my first time on here and I didn't know what to paste. Any help is appreciated :D Public Class Form1 Dim pb_field As PictureBox Private Sub create_field() pb_field = New PictureBox With pb_field .Top = 20 .Left = 20 .Width = 500 .Height = 300 .BackColor = Color.Black End With Me