mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 11:18:01 +00:00
Merge branch 'master' into 'master'
Various Improvement (Android) See merge request core-developers/forge!2110
This commit is contained in:
@@ -38,6 +38,13 @@ public final class UpdateLobbyPlayerEvent implements NetEvent {
|
||||
public static UpdateLobbyPlayerEvent deckUpdate(final DeckSection section, final CardPool cards) {
|
||||
return new UpdateLobbyPlayerEvent(section, cards);
|
||||
}
|
||||
public static UpdateLobbyPlayerEvent nameUpdate(final String name) {
|
||||
return new UpdateLobbyPlayerEvent(name);
|
||||
}
|
||||
|
||||
private UpdateLobbyPlayerEvent(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
private UpdateLobbyPlayerEvent(final Deck deck) {
|
||||
this.deck = deck;
|
||||
|
||||
Reference in New Issue
Block a user