mirror of
https://github.com/Shiewk/SModeration.git
synced 2026-04-28 05:54:16 +02:00
11 lines
212 B
Java
11 lines
212 B
Java
package de.shiewk.smoderation.paper;
|
|
|
|
import java.util.UUID;
|
|
import java.util.concurrent.CompletableFuture;
|
|
|
|
public interface SkinTextureProvider {
|
|
|
|
CompletableFuture<String> textureProperty(UUID player);
|
|
|
|
}
|