| 240 | } |
| 241 | |
| 242 | Vec2F Npc::headArmorOffset() const { |
| 243 | return {m_humanoid.headArmorOffset()[0] * numericalDirection(m_humanoid.facingDirection()), m_humanoid.headArmorOffset()[1]}; |
| 244 | } |
| 245 | |
| 246 | Vec2F Npc::chestArmorOffset() const { |
| 247 | return {m_humanoid.chestArmorOffset()[0] * numericalDirection(m_humanoid.facingDirection()), m_humanoid.chestArmorOffset()[1]}; |
nothing calls this directly
no test coverage detected