tweaks724/src/main/java/eu/m724/tweaks/ping/PingChecker.java
Minecon724 b23f773198
All checks were successful
/ deploy (push) Successful in 5m3s
New ping checker
2024-11-30 20:13:22 +01:00

22 lines
532 B
Java

/*
* Copyright (C) 2024 Minecon724
* Tweaks724 is licensed under the GNU General Public License. See the LICENSE.md file
* in the project root for the full license text.
*/
package eu.m724.tweaks.ping;
import org.bukkit.plugin.Plugin;
public class PingChecker {
private final Plugin plugin;
public PingChecker(Plugin plugin) {
this.plugin = plugin;
}
public void init() {
new KeepAlivePingChecker(plugin).start();
new MsptChecker().init(plugin); // TODO should this be here
}
}