9 lines
162 B
C#
9 lines
162 B
C#
using Ragon.Common;
|
|
|
|
namespace Ragon.Core;
|
|
|
|
public interface IGameThread
|
|
{
|
|
public IDispatcher ThreadDispatcher { get; }
|
|
public ISocketServer Server { get; }
|
|
} |