9 lines
175 B
C#
9 lines
175 B
C#
namespace SpaceGame.Api.Auth.Simulation;
|
|
|
|
public interface IPlayerIdentityResolver
|
|
{
|
|
Guid? GetCurrentPlayerId();
|
|
Guid GetRequiredPlayerId();
|
|
bool CanAccessGm();
|
|
}
|