| 283 | } |
| 284 | |
| 285 | std::optional<Json::Value> Fish::explode(Fish* target){ |
| 286 | return nullopt; |
| 287 | } |
| 288 | |
| 289 | bool Fish::skill_valid(std::vector<Fish*> my_list, std::vector<Fish*> enemy_list) { |
| 290 | int n = my_list.size(), m = enemy_list.size(); |
nothing calls this directly
no test coverage detected