Dominion.CardContextStack.IsSelfPlaying C# (CSharp) Method

IsSelfPlaying() public method

public IsSelfPlaying ( GameState gameState ) : bool
gameState GameState
return bool
        public bool IsSelfPlaying(GameState gameState)
        {
            var currentPlayerState = CurrentPlayerState;
            return gameState.Self == currentPlayerState || currentPlayerState == null;
        }