-
Notifications
You must be signed in to change notification settings - Fork 182
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use dual handler in qstorage controller
rename delegate methods add annotations add javadoc remove unused method
- Loading branch information
Showing
6 changed files
with
73 additions
and
69 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
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 gregtech.api.capability; | ||
|
||
import net.minecraftforge.items.IItemHandler; | ||
import net.minecraftforge.items.IItemHandlerModifiable; | ||
|
||
public interface IDualHandler { | ||
public interface IDualHandler extends IItemHandlerModifiable, IMultipleTankHandler { | ||
|
||
boolean hasFluidTanks(); | ||
|
||
boolean hasItemHandlers(); | ||
|
||
IMultipleTankHandler getFluidTanks(); | ||
IMultipleTankHandler getDelegateTank(); | ||
|
||
IItemHandler getItemHandlers(); | ||
IItemHandler getDelegatItemHandler(); | ||
} |
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