Files
Ragon/Ragon/Sources/Game/IGameThread.cs
T

9 lines
162 B
C#
Raw Normal View History

2022-06-23 20:45:41 +04:00
using Ragon.Common;
namespace Ragon.Core;
public interface IGameThread
{
2022-06-25 11:08:50 +04:00
public IDispatcher ThreadDispatcher { get; }
2022-06-23 20:45:57 +04:00
public ISocketServer Server { get; }
2022-06-23 20:45:41 +04:00
}