blob: 111d8cc4d93c6d7d34cb23d7d9556a76bd2ce5aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
package net.cshift.sparkt.block.entity;
import net.cshift.api.transit.network.*;
import net.cshift.api.transit.network.packet.IStaticPacket;
import net.minecraft.block.BlockState;
import net.minecraft.block.entity.BlockEntity;
import net.minecraft.util.math.BlockPos;
public class MachineNode extends BlockEntity implements INode {
public MachineNode(BlockPos pos, BlockState state) {
super(BlockEntityTypes.MACHINE_NODE, pos, state);
}
@Override
public IStaticPacket accept(IStaticPacket arg0, Channel<?> arg1) {
// TODO Auto-generated method stub
throw new UnsupportedOperationException("Unimplemented method 'accept'");
}
@Override
public <T> Channel<T> connect(int arg0, String arg1, INode arg2) {
// TODO Auto-generated method stub
throw new UnsupportedOperationException("Unimplemented method 'connect'");
}
@Override
public <T> Channel<T> connectDefault(String arg0, INode arg1) {
// TODO Auto-generated method stub
throw new UnsupportedOperationException("Unimplemented method 'connectDefault'");
}
@Override
public PoolManifest getManifest() {
// TODO Auto-generated method stub
throw new UnsupportedOperationException("Unimplemented method 'getManifest'");
}
@Override
public <T> Number getPressure(Channel<T> arg0) {
// TODO Auto-generated method stub
throw new UnsupportedOperationException("Unimplemented method 'getPressure'");
}
@Override
public <T> Number getRate(Channel<T> arg0) {
// TODO Auto-generated method stub
throw new UnsupportedOperationException("Unimplemented method 'getRate'");
}
@Override
public <T> void onTerminate(Channel<T> arg0) {
// TODO Auto-generated method stub
throw new UnsupportedOperationException("Unimplemented method 'onTerminate'");
}
}
|