mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2026-04-14 22:44:08 +02:00
8 lines
231 B
C#
8 lines
231 B
C#
using Phantom.Common.Data.Instance;
|
|
|
|
namespace Phantom.Common.Data.Agent.Instance.Backups;
|
|
|
|
public interface IInstancePlayerCountDetector {
|
|
Task<InstancePlayerCounts?> TryGetPlayerCounts(CancellationToken cancellationToken);
|
|
}
|