All Downloads are FREE. Search and download functionalities are using the official Maven repository.

emu.grasscutter.server.event.game.ServerTickEvent Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
package emu.grasscutter.server.event.game;

import emu.grasscutter.server.event.types.ServerEvent;
import java.time.Instant;

public final class ServerTickEvent extends ServerEvent {
    private final Instant start, end;

    public ServerTickEvent(Instant start, Instant end) {
        super(Type.GAME);

        this.start = start;
        this.end = end;
    }

    public Instant getTickStart() {
        return this.start;
    }

    public Instant getTickEnd() {
        return this.end;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy