private ICommandToken Execute(SetupBotToken token)
        {
            int playerId = token.PlayerId;
            OwnerPerspective ownerPerspective = token.OwnerPerspective;

            playerDictionary.Add(playerId, ownerPerspective);
            return(null);
        }
Exemple #2
0
 public SetupBotToken(int playerId, OwnerPerspective ownerPerspective)
 {
     PlayerId         = playerId;
     OwnerPerspective = ownerPerspective;
 }