more header fixes

This commit is contained in:
2026-03-19 11:06:55 -04:00
parent 2d731bc3b6
commit 04aea27334
9 changed files with 59 additions and 20 deletions

View File

@@ -93,6 +93,10 @@ typedef std::vector<std::string> StringVector;
class Options
{
public:
// deepfriedwaffles: for iOS, was getting compile errors saying: No member named 'sound' in 'Options' and No member named 'music' in 'Options' so I floated them here. 1.0f means full volume out of the box, but if everything is too loud, you might want to try adjusting this
float sound = 1.0f;
float music = 1.0f;
static bool debugGl;
Options(Minecraft* minecraft, const std::string& workingDirectory = "")