forked from CreativeMD/LittleTiles
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ci skip] spotlessApply with the new settings
- Loading branch information
1 parent
b9990bb
commit 6cf99b8
Showing
68 changed files
with
9,001 additions
and
9,527 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
48 changes: 24 additions & 24 deletions
48
src/main/java/com/creativemd/littletiles/LittleTilesPatchingLoader.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,39 +1,39 @@ | ||
package com.creativemd.littletiles; | ||
|
||
import cpw.mods.fml.relauncher.IFMLLoadingPlugin; | ||
import cpw.mods.fml.relauncher.IFMLLoadingPlugin.MCVersion; | ||
|
||
import java.io.File; | ||
import java.util.Map; | ||
|
||
import cpw.mods.fml.relauncher.IFMLLoadingPlugin; | ||
import cpw.mods.fml.relauncher.IFMLLoadingPlugin.MCVersion; | ||
|
||
@MCVersion(value = "1.7.10") | ||
public class LittleTilesPatchingLoader implements IFMLLoadingPlugin { | ||
|
||
public static File location; | ||
public static File location; | ||
|
||
@Override | ||
public String[] getASMTransformerClass() { | ||
return new String[]{LittleTilesTransformer.class.getName()}; | ||
} | ||
@Override | ||
public String[] getASMTransformerClass() { | ||
return new String[] { LittleTilesTransformer.class.getName() }; | ||
} | ||
|
||
@Override | ||
public String getModContainerClass() { | ||
return LittleTiles.class.getName(); | ||
} | ||
@Override | ||
public String getModContainerClass() { | ||
return LittleTiles.class.getName(); | ||
} | ||
|
||
@Override | ||
public String getSetupClass() { | ||
return null; | ||
} | ||
@Override | ||
public String getSetupClass() { | ||
return null; | ||
} | ||
|
||
@Override | ||
public void injectData(Map<String, Object> data) { | ||
location = (File) data.get("coremodLocation"); | ||
} | ||
@Override | ||
public void injectData(Map<String, Object> data) { | ||
location = (File) data.get("coremodLocation"); | ||
} | ||
|
||
@Override | ||
public String getAccessTransformerClass() { | ||
return null; | ||
} | ||
@Override | ||
public String getAccessTransformerClass() { | ||
return null; | ||
} | ||
|
||
} |
12 changes: 7 additions & 5 deletions
12
src/main/java/com/creativemd/littletiles/client/LittleTilesClient.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
11 changes: 6 additions & 5 deletions
11
src/main/java/com/creativemd/littletiles/client/render/ITilesRenderer.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,14 +1,15 @@ | ||
package com.creativemd.littletiles.client.render; | ||
|
||
import com.creativemd.creativecore.common.utils.CubeObject; | ||
import java.util.ArrayList; | ||
|
||
import net.minecraft.item.ItemStack; | ||
|
||
import java.util.ArrayList; | ||
import com.creativemd.creativecore.common.utils.CubeObject; | ||
|
||
public interface ITilesRenderer { //is client-side effective only! | ||
public interface ITilesRenderer { // is client-side effective only! | ||
|
||
ArrayList<CubeObject> getRenderingCubes(ItemStack stack); | ||
ArrayList<CubeObject> getRenderingCubes(ItemStack stack); | ||
|
||
boolean hasBackground(ItemStack stack); | ||
boolean hasBackground(ItemStack stack); | ||
|
||
} |
Oops, something went wrong.