mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-03-11 20:25:36 +00:00
11 lines
244 B
Java
11 lines
244 B
Java
package com.hbm.uninos;
|
|
|
|
import api.hbm.energymk2.IEnergyReceiverMK2.ConnectionPriority;
|
|
|
|
public interface IGenReceiver<T extends INetworkProvider> {
|
|
|
|
public default ConnectionPriority getPriority() {
|
|
return ConnectionPriority.NORMAL;
|
|
}
|
|
}
|