Reimplement miles sound artifacts, Stone Brick Stairs recipe, and craft sound (#684)

* Reimplement miles sound artifacts

* Fix stone brick stairs recipe

* Fix craft and scroll sound
This commit is contained in:
GuglioIsStupid
2026-03-06 02:45:25 -05:00
committed by GitHub
parent 0469e982ce
commit de46641cda
6 changed files with 13 additions and 6 deletions

View File

@@ -3,6 +3,7 @@ using namespace std;
#include "IUIController.h"
#include "UIEnums.h"
#include "UIGroup.h"
#include <random>
class UIAbstractBitmapFont;
class UIBitmapFont;
@@ -63,6 +64,9 @@ private:
UITTFFont *m_mcTTFFont;
UIBitmapFont *m_moj7, *m_moj11;
std::mt19937 m_randomGenerator;
std::uniform_real_distribution<float> m_randomDistribution;
public:
void setCleanupOnReload();
void updateCurrentFont();