I would like to define a dictionary as follows:
dict = {
Player: $key.Name + " takes some action"
}
Is there a syntax that would allow me to do this?
I want to avoid using Player twice. For example, if I want to replace Player with AdvancedPlayer, I have two references to replace.
1 Answer