mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
14 lines
302 B
C#
14 lines
302 B
C#
using Robust.Shared.Input;
|
|
using Robust.Shared.Player;
|
|
|
|
namespace Robust.Server.Player;
|
|
|
|
/// <summary>
|
|
/// Manages each players session when connected to the server.
|
|
/// </summary>
|
|
[NotContentImplementable]
|
|
public interface IPlayerManager : ISharedPlayerManager
|
|
{
|
|
BoundKeyMap KeyMap { get; }
|
|
}
|