| 217 | #undef max |
| 218 | |
| 219 | void olc::rcw::Object::Walk(const float fWalkSpeed) |
| 220 | { |
| 221 | fSpeed = fWalkSpeed; |
| 222 | vel = olc::vf2d(std::cos(fHeading), std::sin(fHeading)) * fSpeed; |
| 223 | } |
| 224 | |
| 225 | void olc::rcw::Object::Strafe(const float fStrafeSpeed) |
| 226 | { |
nothing calls this directly
no outgoing calls
no test coverage detected