| 504 | } |
| 505 | |
| 506 | int Game_Battler::ChangeSp(int sp) { |
| 507 | const auto prev_sp = GetSp(); |
| 508 | const auto new_sp = SetSp(prev_sp + sp); |
| 509 | return new_sp - prev_sp; |
| 510 | } |
| 511 | |
| 512 | int Game_Battler::GetMaxSp() const { |
| 513 | return GetBaseMaxSp(); |
no outgoing calls
no test coverage detected