1
mirror of https://github.com/Shiewk/SModeration.git synced 2026-04-29 06:34:17 +02:00

Allow registering skin texture provider for player heads

This commit is contained in:
Shy
2025-05-01 11:25:49 +02:00
parent 8128628b12
commit 955ab8791a
3 changed files with 101 additions and 45 deletions
@@ -0,0 +1,10 @@
package de.shiewk.smoderation.paper;
import java.util.UUID;
import java.util.concurrent.CompletableFuture;
public interface SkinTextureProvider {
CompletableFuture<String> textureProperty(UUID player);
}