PlayerCustomTexture.java 237 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
package com.owlmaddie.skin;

import net.minecraft.util.Identifier;

public class PlayerCustomTexture {
    public static boolean hasCustomIcon(Identifier skinId) {
        // By default, do nothing special
        return false;
    }
}