Code for a basic Pong style game!
Makes a little pong style game Original Author: Matthew Eagar Assumptions Nothin much, just a very basic knowledge of VB programming. Code Dim vmom As Integer ‘holds the ball’s vertical momentumDim hmom As Integer ‘holds the ball’s horizontal momentum Private Sub Form_Load() Randomize ‘make the vertical and horizontal momentums random vmom = 100 + Int(Rnd * 200) hmom = 100 + Int(Rnd *… Read More »