| 773 | |
| 774 | InputProfile& InputSubsystem::GetProfile(InputContext ctx) |
| 775 | { |
| 776 | return profiles_[static_cast<int>(ctx)]; |
| 777 | } |
| 778 | |
| 779 | const InputProfile& InputSubsystem::GetProfile(InputContext ctx) const |
| 780 | { |
| 781 | return profiles_[static_cast<int>(ctx)]; |
| 782 | } |
| 783 | |
| 784 | void InputSubsystem::ResetLookAroundToggle() |
| 785 | { |
| 786 | lookAroundToggled_ = false; |
| 787 | GInput.lookAroundToggleEnabled = false; |
| 788 | } |
| 789 |
no outgoing calls
no test coverage detected