mirror of
https://github.com/Tribufu/ServerManagers
synced 2026-08-08 12:11:05 +00:00
14 lines
347 B
C#
14 lines
347 B
C#
using ServerManagerTool.Enums;
|
|
using System.Collections.ObjectModel;
|
|
using System.Diagnostics;
|
|
|
|
namespace ServerManagerTool.Lib
|
|
{
|
|
public struct ServerStatusUpdate
|
|
{
|
|
public Process Process;
|
|
public WatcherServerStatus Status;
|
|
public QueryMaster.ServerInfo ServerInfo;
|
|
public int OnlinePlayerCount;
|
|
}
|
|
}
|