| 244 | } |
| 245 | |
| 246 | Vec2F Npc::chestArmorOffset() const { |
| 247 | return {m_humanoid.chestArmorOffset()[0] * numericalDirection(m_humanoid.facingDirection()), m_humanoid.chestArmorOffset()[1]}; |
| 248 | } |
| 249 | |
| 250 | Vec2F Npc::backArmorOffset() const { |
| 251 | return {m_humanoid.backArmorOffset()[0] * numericalDirection(m_humanoid.facingDirection()), m_humanoid.backArmorOffset()[1]}; |
nothing calls this directly
no test coverage detected