Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JEI Support #431

Open
wants to merge 19 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
12 changes: 8 additions & 4 deletions .nb-gradle-properties
Original file line number Diff line number Diff line change
@@ -1,17 +1,21 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<gradle-project-properties>
<!--DO NOT EDIT THIS FILE! - Used by the Gradle plugin of NetBeans.-->
<source-level>1.8</source-level>
<license-header>
<name>MIT</name>
<template>license-mit.txt</template>
<property name="organization">MineTweaker</property>
</license-header>
<built-in-tasks>
<task>
<display-name>debug</display-name>
<non-blocking>no</non-blocking>
<task-names>
<name must-exist="no">runClient</name>
<name must-exist="no">debugClient</name>
</task-names>
<task-args/>
<task-jvm-args>
<arg>-Xdebug</arg>
</task-jvm-args>
<task-jvm-args/>
</task>
<task>
<display-name>run</display-name>
Expand Down
13 changes: 11 additions & 2 deletions MineTweaker3-API/src/main/java/minetweaker/ClassRegistry.java
Original file line number Diff line number Diff line change
@@ -1,15 +1,24 @@
/*
* This file is part of MineTweaker API, licensed under the MIT License (MIT).
*
* Copyright (c) 2014 MineTweaker <http://minetweaker3.powerofbytes.com>
*/
package minetweaker;

import java.util.List;

/**
* The class registry provides the list of annotated classes to the scripting
* system.
*
* API status: not a public API
*
* @author Stan Hebben
*/
public class ClassRegistry {
public static void getClasses(List<Class> output) {
public class ClassRegistry
{
public static void getClasses(List<Class> output)
{
// method stub; contents generated by RegisterZenClassesTask
}
}
32 changes: 0 additions & 32 deletions MineTweaker3-API/src/main/java/minetweaker/IBracketHandler.java

This file was deleted.

18 changes: 0 additions & 18 deletions MineTweaker3-API/src/main/java/minetweaker/IRecipeRemover.java

This file was deleted.

83 changes: 0 additions & 83 deletions MineTweaker3-API/src/main/java/minetweaker/IUndoableAction.java

This file was deleted.

Loading