feat: Synchronize game items

kinda
This commit is contained in:
2026-02-03 21:40:13 +01:00
parent faadc92dbc
commit cdd002ea20
9 changed files with 121 additions and 15 deletions

View File

@@ -0,0 +1,9 @@
package cz.jzitnik.common.socket.messages.items;
import cz.jzitnik.common.socket.SocketMessage;
public record ItemTookFromChest(
String roomId, // For faster lookup i guess
int id
) implements SocketMessage {
}