Browse Source

Pong skeleton removed

Tankernn 8 years ago
parent
commit
2f8480afe9
1 changed files with 0 additions and 26 deletions
  1. 0 26
      src/main/java/server/Pong.java

+ 0 - 26
src/main/java/server/Pong.java

@@ -1,26 +0,0 @@
-package server;
-
-import java.awt.event.ActionEvent;
-import java.awt.event.ActionListener;
-
-import javax.swing.Timer;
-
-public class Pong implements ActionListener {
-	
-	Timer tim = new Timer(100, this);
-	
-	Client player1;
-	Client player2;
-	
-	public Pong(Client p1, Client p2) {
-		player1 = p1;
-		player2 = p2;
-		
-		// TODO Initialize game here
-	}
-	
-	@Override
-	public void actionPerformed(ActionEvent arg0) {
-		// TODO Update game logic here
-	}
-}