Initial commit

This commit is contained in:
Meredith Espinosa
2019-06-18 02:33:36 -07:00
commit 56ee01d42b
17 changed files with 833 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package io.github.cottonmc.slopetest;
import io.github.cottonmc.slopetest.block.entity.SlopeTestEntity;
import io.github.cottonmc.slopetest.block.entity.render.SlopeTestRenderer;
import net.fabricmc.api.ClientModInitializer;
import net.fabricmc.fabric.api.client.render.BlockEntityRendererRegistry;
public class SlopeTestClient implements ClientModInitializer {
@Override
public void onInitializeClient() {
BlockEntityRendererRegistry.INSTANCE.register(SlopeTestEntity.class, new SlopeTestRenderer());
}
}