mirror of
https://github.com/tribufu/ServerManagers
synced 2026-05-06 15:17:34 +00:00
13 lines
309 B
C#
13 lines
309 B
C#
using System.Diagnostics;
|
|
using ServerManagerTool.Enums;
|
|
|
|
namespace ServerManagerTool.Lib
|
|
{
|
|
public struct ServerStatusUpdate
|
|
{
|
|
public Process Process;
|
|
public WatcherServerStatus Status;
|
|
public QueryMaster.ServerInfo ServerInfo;
|
|
public int OnlinePlayerCount;
|
|
}
|
|
}
|