| 4 | #include <string> |
| 5 | |
| 6 | struct ChampMinimal |
| 7 | { |
| 8 | bool active; |
| 9 | std::string alias; |
| 10 | std::string banVoPath; |
| 11 | std::string baseLoadScreenPath; |
| 12 | bool botEnabled; |
| 13 | std::string chooseVoPath; |
| 14 | //disabledQueues |
| 15 | bool freeToPlay; |
| 16 | int id; |
| 17 | std::string name; |
| 18 | |
| 19 | //ownership |
| 20 | bool freeToPlayReward; |
| 21 | int owned; |
| 22 | |
| 23 | std::string purchased; |
| 24 | bool rankedPlayEnabled; |
| 25 | std::pair<std::string, std::string> roles; |
| 26 | std::string squarePortraitPath; |
| 27 | std::string stingerSfxPath; |
| 28 | std::string title; |
| 29 | }; |
| 30 | |
| 31 | struct ChampMastery |
| 32 | { |
nothing calls this directly
no outgoing calls
no test coverage detected