File tree Expand file tree Collapse file tree
src/main/java/turniplabs/halplibe/util Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11package turniplabs .halplibe .util ;
22
33public interface BlockInitEntrypoint {
4+ /**
5+ * The entrypoint name inside {@code fabric.mod.json} is {@code afterBlockInit}.
6+ */
47 void afterBlockInit ();
58}
Original file line number Diff line number Diff line change 11package turniplabs .halplibe .util ;
22
3+
34public interface ClientStartEntrypoint {
5+ /**
6+ * The entrypoint name inside {@code fabric.mod.json} is {@code beforeClientStart}.
7+ */
48 void beforeClientStart ();
59
10+ /**
11+ * The entrypoint name inside {@code fabric.mod.json} is {@code afterClientStart}.
12+ */
613 void afterClientStart ();
714}
Original file line number Diff line number Diff line change 22
33public interface GameStartEntrypoint {
44
5+ /**
6+ * The entrypoint name inside {@code fabric.mod.json} is {@code beforeGameStart}.
7+ */
58 void beforeGameStart ();
69
10+ /**
11+ * The entrypoint name inside {@code fabric.mod.json} is {@code afterGameStart}.
12+ */
713 void afterGameStart ();
814}
Original file line number Diff line number Diff line change 11package turniplabs .halplibe .util ;
22
3+
34public interface ItemInitEntrypoint {
5+ /**
6+ * The entrypoint name inside {@code fabric.mod.json} is {@code afterItemInit}.
7+ */
48 void afterItemInit ();
59}
Original file line number Diff line number Diff line change 1010
1111@ Environment (EnvType .CLIENT )
1212public interface ModelEntrypoint {
13+ /**
14+ * The entrypoint name inside {@code fabric.mod.json} is {@code initModels}.
15+ */
1316 void initBlockModels (BlockModelDispatcher dispatcher );
17+ /**
18+ * The entrypoint name inside {@code fabric.mod.json} is {@code initModels}.
19+ */
1420 void initItemModels (ItemModelDispatcher dispatcher );
21+ /**
22+ * The entrypoint name inside {@code fabric.mod.json} is {@code initModels}.
23+ */
1524 void initEntityModels (EntityRenderDispatcher dispatcher );
25+ /**
26+ * The entrypoint name inside {@code fabric.mod.json} is {@code initModels}.
27+ */
1628 void initTileEntityModels (TileEntityRenderDispatcher dispatcher );
29+ /**
30+ * The entrypoint name inside {@code fabric.mod.json} is {@code initModels}.
31+ */
1732 void initBlockColors (BlockColorDispatcher dispatcher );
1833}
Original file line number Diff line number Diff line change 33import net .minecraft .client .option .GameSettings ;
44
55public interface OptionsInitEntrypoint {
6+ /**
7+ * The entrypoint name inside {@code fabric.mod.json} is {@code initOptions}.
8+ */
69 void initOptions (GameSettings settings );
710}
Original file line number Diff line number Diff line change 11package turniplabs .halplibe .util ;
22
33public interface RecipeEntrypoint {
4+ /**
5+ * The entrypoint name inside {@code fabric.mod.json} is {@code recipesReady}.
6+ */
47 void onRecipesReady ();
58
9+ /**
10+ * The entrypoint name inside {@code fabric.mod.json} is {@code recipesReady}.
11+ */
612 void initNamespaces ();
713}
You can’t perform that action at this time.
0 commit comments