-
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.
- Loading branch information
1 parent
ce43059
commit f5a7c14
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
src/main/java/com/broll/networklib/server/impl/DummyLobbyPlayer.java
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,8 +1,8 @@ | ||
package com.broll.networklib.server.impl; | ||
|
||
public class DummyLobbyPlayer<P extends ILobbyData> extends LobbyPlayer<P>{ | ||
public DummyLobbyPlayer() { | ||
super(new DummyPlayer<>()); | ||
public DummyLobbyPlayer(int id) { | ||
super(new DummyPlayer<>(id)); | ||
} | ||
|
||
} |
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