mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2025-02-23 12:44:32 +01:00
13 lines
347 B
Java
13 lines
347 B
Java
package com.minelittlepony.client.hdskins;
|
|
|
|
import org.apache.logging.log4j.LogManager;
|
|
|
|
public final class IndirectHDSkins {
|
|
public static void initialize() {
|
|
try {
|
|
new MineLPHDSkins();
|
|
} catch (Exception e) {
|
|
LogManager.getLogger().warn("Failed to initialize hooks for hdskins", e);
|
|
}
|
|
}
|
|
}
|