now able to toggle hud modules

This commit is contained in:
kawaiizenbo 2024-09-07 21:21:22 -07:00
parent 8f6646b7e0
commit 90347f7476
5 changed files with 137 additions and 0 deletions

View file

@ -55,4 +55,8 @@ public class HUDModule
dragging = false;
}
public void toggle()
{
enabled = !enabled;
}
}