Start hard-fork from Luminol

This commit is contained in:
Helvetica Volubi
2026-07-18 01:27:14 +08:00
parent f4aea025c1
commit 0678cc6e46
365 changed files with 28337 additions and 657 deletions
@@ -0,0 +1,28 @@
package me.earthme.luminol.api;
/**
* A simple package of folia's tick region state.It linked to the RegionStats of the nms part so that</br>
* You could call these methods to get the status of this tick region</br>
*/
public interface RegionStats {
/**
* Get the entity count in this tick region
*
* @return the entity count
*/
int getEntityCount();
/**
* Get the player count in this tick region
*
* @return the player count
*/
int getPlayerCount();
/**
* Get the chunk count in this tick region
*
* @return the chunk count
*/
int getChunkCount();
}