9 lines
201 B
C#
9 lines
201 B
C#
using Ragon.Server.IO;
|
|
|
|
namespace Ragon.Server.Room;
|
|
|
|
public interface IRagonRoom
|
|
{
|
|
RagonRoomPlayer GetPlayerByConnection(INetworkConnection connection);
|
|
RagonRoomPlayer GetPlayerById(string id);
|
|
} |