File tree Expand file tree Collapse file tree 5 files changed +10
-0
lines changed
src/main/java/com/falsepattern/lib Expand file tree Collapse file tree 5 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 11package com .falsepattern .lib .compat ;
22
3+ import com .falsepattern .lib .StableAPI ;
34import cpw .mods .fml .relauncher .Side ;
45import cpw .mods .fml .relauncher .SideOnly ;
56import java .util .ArrayList ;
1819 * A functional equivalent to GuiLabel present in Minecraft 1.12.
1920 */
2021@ SideOnly (Side .CLIENT )
22+ @ StableAPI (since = "0.8.0" )
2123public class GuiLabel extends Gui {
2224 private final List <String > lines = new ArrayList <>();
2325 private final FontRenderer fontRenderer ;
Original file line number Diff line number Diff line change 11package com .falsepattern .lib .mixin ;
22
3+ import com .falsepattern .lib .StableAPI ;
34import cpw .mods .fml .relauncher .FMLLaunchHandler ;
45import java .util .List ;
56import java .util .function .Predicate ;
67import java .util .function .Supplier ;
78import lombok .val ;
89
10+ @ StableAPI (since = "0.8.0" )
911public interface IMixin {
1012
1113 String getMixin ();
Original file line number Diff line number Diff line change 11package com .falsepattern .lib .mixin ;
22
3+ import com .falsepattern .lib .StableAPI ;
34import com .falsepattern .lib .internal .CoreLoadingPlugin ;
45import java .io .File ;
56import java .io .FileNotFoundException ;
2021
2122import static java .nio .file .Files .walk ;
2223
24+ @ StableAPI (since = "0.8.0" )
2325public interface IMixinPlugin extends IMixinConfigPlugin {
2426 Path MODS_DIRECTORY_PATH = CoreLoadingPlugin .mcDir .toPath ().resolve ("mods" );
2527
Original file line number Diff line number Diff line change 11package com .falsepattern .lib .mixin ;
22
3+ import com .falsepattern .lib .StableAPI ;
34import com .google .common .io .Files ;
45import java .nio .file .Path ;
56import java .util .function .Predicate ;
67
8+ @ StableAPI (since = "0.8.0" )
79public interface ITargetedMod {
810
911 String getModName ();
Original file line number Diff line number Diff line change 11package com .falsepattern .lib .util ;
22
3+ import com .falsepattern .lib .StableAPI ;
34import cpw .mods .fml .relauncher .ReflectionHelper ;
45import cpw .mods .fml .relauncher .SideOnly ;
56import lombok .*;
1213
1314@ SideOnly (CLIENT )
1415@ NoArgsConstructor (access = PRIVATE )
16+ @ StableAPI (since = "0.8.0" )
1517public final class RenderUtil {
1618 private final static Timer MINECRAFT_TIMER = getMinecraftTimer ();
1719
You can’t perform that action at this time.
0 commit comments