Add more ores

Add weighted random distribution
This commit is contained in:
Bram Verhulst
2024-04-22 22:34:29 +02:00
parent e578a77d84
commit e75b80eea8
25 changed files with 198 additions and 94 deletions

View File

@@ -197,6 +197,9 @@ void BaseGame::Run()
e.button.y = int(m_Window.height) - e.button.y;
this->ProcessMouseUpEvent(e.button);
break;
case SDL_MOUSEWHEEL:
this->ProcessMouseWheelEvent(e.wheel);
break;
}
}