aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common/events/BaseMetricsCoverEvent.java
blob: 953d6fbfcf146c56033c48eab82a92b5ab018cd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package gregtech.common.events;

import java.util.UUID;

import org.jetbrains.annotations.NotNull;

import cpw.mods.fml.common.eventhandler.Event;

public abstract class BaseMetricsCoverEvent extends Event {

    protected final UUID frequency;

    public BaseMetricsCoverEvent(@NotNull UUID frequency) {
        this.frequency = frequency;
    }

    @NotNull
    public UUID getFrequency() {
        return frequency;
    }
}