fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. #include <stdio.h>
  5.  
  6. struct PlayerOptions_t {
  7. char* name;
  8. int isEnabled;
  9. int isSubmenu;
  10. };
  11.  
  12. struct PlayerOptions_t PlayerOptions[8] = {
  13. {"Invisible", false, false},
  14. {"Godmode", false, false},
  15. {"No Ragdoll", false, false},
  16. {"Super Jump", false, false},
  17. {"Fast Run", false, false},
  18. {"No Police", false, false},
  19. {"Character Options", false, true},
  20. {"Cash Options", false, true}
  21. };
  22.  
  23. int main() {
  24. // your code goes here
  25. return 0;
  26. }
Success #stdin #stdout 0s 15240KB
stdin
Standard input is empty
stdout
Standard output is empty