Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Rolleander committed May 1, 2024
1 parent ce43059 commit f5a7c14
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
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));
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
import com.broll.networklib.server.NetworkConnection;

public class DummyPlayer<P extends ILobbyData> extends Player<P>{
public DummyPlayer() {
super(-1, null, null);
public DummyPlayer(int id) {
super(id, null, null);
}

@Override
Expand Down

0 comments on commit f5a7c14

Please sign in to comment.