mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-07-30 11:05:28 +02:00
13 lines
468 B
Java
13 lines
468 B
Java
package com.gmail.nossr50.util;
|
|
|
|
import com.gmail.nossr50.datatypes.player.McMMOPlayer;
|
|
import com.gmail.nossr50.datatypes.player.PlayerProfile;
|
|
import org.bukkit.Location;
|
|
import org.bukkit.entity.Player;
|
|
import org.bukkit.inventory.PlayerInventory;
|
|
|
|
public record TestPlayerMock(Player player, PlayerInventory playerInventory,
|
|
Location playerLocation, PlayerProfile playerProfile,
|
|
McMMOPlayer mmoPlayer) {
|
|
}
|