-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
16 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
src/main/java/org/infernalstudios/infernalexp/entity/ModEntities.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package org.infernalstudios.infernalexp.entity; | ||
|
||
import org.infernalstudios.infernalexp.InfernalExpansion; | ||
|
||
public class ModEntities { | ||
/** Wanted to write some dummy stuff on how to register entities, but it's different with Gecko so I don't know how in the end */ | ||
public static void register() { | ||
InfernalExpansion.log("Registering Entities for " + InfernalExpansion.MOD_ID); | ||
|
||
/** Every entity needs its attributes registered this way */ | ||
//FabricDefaultAttributeRegistry.register(CRYSTIE, CrystieEntity.createAttributes()); | ||
} | ||
} |