added fav and some other stuff

This commit is contained in:
Sam van Remortel
2026-05-25 17:57:27 +02:00
parent ea86135d39
commit e6319f921f
10 changed files with 345 additions and 50 deletions

View File

@@ -3,9 +3,11 @@ package dev.massuus.vaultpartyui.client.screen;
final class OnlineRow {
final OnlinePlayer player;
final RowState state;
final boolean favorite;
OnlineRow(OnlinePlayer player, RowState state) {
OnlineRow(OnlinePlayer player, RowState state, boolean favorite) {
this.player = player;
this.state = state;
this.favorite = favorite;
}
}