blob: 490bd7d0b0a2fa63e2991e294c0755e743b19722 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package gregtech.common.events;
import java.util.UUID;
import org.jetbrains.annotations.NotNull;
/**
* Event fired when the machine housing a Metrics Transmitter cover is deconstructed, but the cover remains
* attached.
*/
public class MetricsCoverHostDeconstructedEvent extends BaseMetricsCoverEvent {
public MetricsCoverHostDeconstructedEvent(@NotNull UUID frequency) {
super(frequency);
}
}
|