9
0
mirror of https://github.com/Xiao-MoMi/craft-engine.git synced 2025-12-29 11:59:11 +00:00

初步清洁

This commit is contained in:
XiaoMoMi
2025-06-28 00:33:40 +08:00
parent 1445af7b82
commit 01eb7f5e21
39 changed files with 246 additions and 907 deletions

View File

@@ -0,0 +1,4 @@
package net.momirealms.craftengine.core.block;
public interface CraftEngineNMSBlock extends ShapeHolder, BehaviorHolder, ChainUpdateBlockIndicator {
}

View File

@@ -1,4 +0,0 @@
package net.momirealms.craftengine.core.block;
public interface CustomBlockState {
}

View File

@@ -0,0 +1,8 @@
package net.momirealms.craftengine.core.block;
public interface CustomBlockStateHolder {
ImmutableBlockState customBlockState();
void setCustomBlockState(ImmutableBlockState state);
}