-
Notifications
You must be signed in to change notification settings - Fork 0
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
59 changed files
with
1,670 additions
and
209 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -62,4 +62,5 @@ Temporary Items | |
|
||
# ARL Symlinks | ||
api/ | ||
libs/ | ||
/forgestore.jks |
This file was deleted.
Oops, something went wrong.
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
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
11 changes: 8 additions & 3 deletions
11
src/main/java/me/itstheholyblack/vigilant_eureka/Reference.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 |
---|---|---|
@@ -1,8 +1,13 @@ | ||
package me.itstheholyblack.vigilant_eureka; | ||
|
||
import org.apache.logging.log4j.LogManager; | ||
import org.apache.logging.log4j.Logger; | ||
|
||
public class Reference { | ||
public static final String MOD_NAME = "Vigilant Eureka"; | ||
static final String MOD_NAME = "Vigilant Eureka"; | ||
public static final String MOD_ID = "vigilant_eureka"; | ||
public static final String VERSION = "0.0.2-alpha"; | ||
public static final String MOD_KEY = "19d2daed26722f2762d067603604a6d1f909f262"; | ||
static final String VERSION = "0.0.4"; | ||
static final String MOD_KEY = "19d2daed26722f2762d067603604a6d1f909f262"; | ||
static final String DEPENDS = "required-after:baubles@[1.5.2,)"; | ||
public static final Logger LOGGER = LogManager.getLogger(MOD_ID); | ||
} |
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
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
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
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
23 changes: 23 additions & 0 deletions
23
src/main/java/me/itstheholyblack/vigilant_eureka/client/Icons.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,23 @@ | ||
package me.itstheholyblack.vigilant_eureka.client; | ||
|
||
import me.itstheholyblack.vigilant_eureka.client.renderer.RenderHelp; | ||
import net.minecraft.client.renderer.texture.TextureAtlasSprite; | ||
import net.minecraftforge.client.event.TextureStitchEvent; | ||
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; | ||
|
||
public class Icons { | ||
|
||
public static final Icons INSTANCE = new Icons(); | ||
|
||
public TextureAtlasSprite time_open; | ||
public TextureAtlasSprite time_closed; | ||
|
||
private Icons() { | ||
} | ||
|
||
@SubscribeEvent | ||
public void onTextureStitch(TextureStitchEvent.Pre evt) { | ||
time_open = RenderHelp.forName(evt.getMap(), "time_open_rend", "items"); | ||
time_closed = RenderHelp.forName(evt.getMap(), "time_rend", "items"); | ||
} | ||
} |
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
Oops, something went wrong.