Further settings implementation and macros

This commit is contained in:
2025-12-28 01:09:44 +01:00
parent 81a4bb4bc4
commit f5a35344d0
6 changed files with 105 additions and 43 deletions

View File

@@ -13,7 +13,7 @@ public class GambaWindow : Window, IDisposable
// todo remove state as the window will only be opened by us calling it with parameters window id
private readonly Player? player;
private readonly Plugin plugin;
private string name;
private readonly string name;
public GambaWindow(Plugin plugin, MenuTargetDefault target)
: base($"High Roller Classic###{target.TargetContentId}",
@@ -45,9 +45,15 @@ public class GambaWindow : Window, IDisposable
}
/* TODO check if all settings are set
bet/step
roll settings
message/macro settings
*/
if (!configuration.SettingsInit)
{
ImGui.Text("Please set up settings");
return;
}
// todo if player is null, then allow user to set user by clicking on them manually
if (player == null)