Rivoreo Source Code Repositories
src.rivoreo.one
/
minecraft
/
opencomputers
/
331e89abf93c0f6b038b9cdb1abdc10de143ac51
/
.
/
src
/
main
/
optional
/
appeng
/
api
/
me
/
tiles
/
IConnectionSensitive.java
blob: 723401c1f3182ead05cfc26495997d061d2b892b [
file
] [
log
] [
blame
] [
raw
]
package
appeng
.
api
.
me
.
tiles
;
import
java
.
util
.
Set
;
import
net
.
minecraftforge
.
common
.
ForgeDirection
;
public
interface
IConnectionSensitive
{
void
onMEConnectionsChanged
(
Set
<
ForgeDirection
>
connections
,
Set
<
ForgeDirection
>
visualConnections
);
}