1package com.osroyale.game.world.entity.mob.player.persist;
3import com.google.gson.JsonElement;
4import com.osroyale.game.world.entity.mob.player.Player;
26abstract class PlayerJSONProperty {
30 PlayerJSONProperty(String label) {
34 abstract void read(Player player, JsonElement property);
36 abstract Object write(Player player);