hello, for a school project i have to create a fighting game. After displaying player 1's characters, I would like player 1 to select a character from their list. Can you help me ? thank you
Code Block Swift func list() { print("here are the three characters :") for characters in Character { print("\(characters.charactersName), \(characters.weapon), \(characters.lifePoint)") } }