Shaders improved

This commit is contained in:
2023-11-12 20:10:53 -06:00
parent 5d3adb3013
commit 91a91a5404
12 changed files with 22 additions and 40 deletions

View File

@ -8,10 +8,6 @@
using namespace Dawn;
InputManager::InputManager(DawnGame *game) : IInputManager<int32_t>(game) {
}
float_t InputManager::getInputValue(int32_t axis) {
auto exist = this->rawInputValues.find(axis);
if(exist == this->rawInputValues.end()) return 0.0f;

View File

@ -17,7 +17,5 @@ namespace Dawn {
public:
std::map<int32_t, float_t> rawInputValues;
InputManager(DawnGame *game);
};
}