package com.owlmaddie.chat;

/**
 * The {@code PlayerData} class represents data associated with a player,
 * specifically tracking their friendship level.
 */
public class PlayerData {
    public int friendship;

    public PlayerData() {
        this.friendship = 0;
    }
}