-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug fixed and removed WebSocket.java
- Loading branch information
1 parent
675c805
commit 9b02d37
Showing
19 changed files
with
105 additions
and
115 deletions.
There are no files selected for viewing
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
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
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
package com.cse3310; | ||
|
||
import java.util.ArrayList; | ||
|
||
public class Game{ | ||
private ArrayList<User> users; | ||
public int GameId; | ||
public int[][] grid; | ||
|
||
public Game() | ||
{ | ||
|
||
} | ||
|
||
public boolean checkVertical(ArrayList<User> selectedLetters, int length){ | ||
return true; | ||
} | ||
|
||
public boolean checkDiagonal(ArrayList<User> selectedLetters, int length){ | ||
return true; | ||
} | ||
|
||
public boolean checkHorizontal(ArrayList<User> selectedLetters, int length){ | ||
return true; | ||
} | ||
|
||
public void Update(UserEvent U){ | ||
|
||
} | ||
|
||
public void checkWin(User user){ | ||
|
||
} | ||
|
||
public String keepScore(ArrayList score){ | ||
|
||
return ""; | ||
} | ||
|
||
public void Tick(){ | ||
|
||
} | ||
} |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,6 @@ | |
|
||
public class UserEvent { | ||
int GameId; | ||
User UserId; | ||
int UserId; | ||
int Button[][]; | ||
String message; | ||
} |
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
4 changes: 4 additions & 0 deletions
4
target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
/workspaces/cse3310_sp24_group_26/src/main/java/com/cse3310/Game.java | ||
/workspaces/cse3310_sp24_group_26/src/main/java/com/cse3310/HttpServer.java | ||
/workspaces/cse3310_sp24_group_26/src/main/java/com/cse3310/Coordinate.java | ||
/workspaces/cse3310_sp24_group_26/src/main/java/com/cse3310/ServerEvent.java | ||
/workspaces/cse3310_sp24_group_26/src/main/java/com/cse3310/UserEvent.java | ||
/workspaces/cse3310_sp24_group_26/src/main/java/com/cse3310/User.java | ||
/workspaces/cse3310_sp24_group_26/src/main/java/com/cse3310/Locations.java | ||
/workspaces/cse3310_sp24_group_26/src/main/java/com/cse3310/App.java | ||
/workspaces/cse3310_sp24_group_26/src/main/java/com/cse3310/WebSocket.java |
Binary file not shown.