Files
Ragon/Ragon/Sources/Game/IGameThread.cs
T
2022-06-25 11:08:50 +04:00

9 lines
162 B
C#

using Ragon.Common;
namespace Ragon.Core;
public interface IGameThread
{
public IDispatcher ThreadDispatcher { get; }
public ISocketServer Server { get; }
}