Added auto-accept, player heads beside party.

This commit is contained in:
Sam van Remortel
2026-05-24 18:46:16 +02:00
parent 65e6b510d4
commit d778129ead
13 changed files with 566 additions and 94 deletions

View File

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