mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-24 13:57:59 +01:00
9 lines
230 B
Java
9 lines
230 B
Java
package com.minelittlepony.unicopia;
|
|
|
|
import net.minecraftforge.fml.common.FMLCommonHandler;
|
|
|
|
public interface UClient {
|
|
static boolean isClientSide() {
|
|
return FMLCommonHandler.instance().getSide().isClient();
|
|
}
|
|
}
|