Advertisement
Tarferi

EUD power tool input settings structure

Jul 8th, 2019
391
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.49 KB | None | 0 0
  1. typedef struct EUDSettings {
  2.  
  3.     bool addTouchRevive;
  4.     bool useDefaultGunShot;
  5.     bool useDefaultBackgroundMusic;
  6.     bool enableVisor;
  7.     bool enableBarrier;
  8.     bool addLeaderboard;
  9.     bool addTimeLock;
  10.    
  11.     bool useSanctuaryColors;
  12.  
  13.     char* GunShotWavFilePath;
  14.     char* VisorUsageFilePath;
  15.     char* BackgroundWavFilePath;
  16.  
  17.     char* TimeLockMessage;
  18.     char* TimeLockFrom;
  19.     char* TimeLockTo;
  20.     char* inputFilePath;
  21.     char* outputFilePath;
  22.    
  23.     bool verbose;
  24.  
  25.     unsigned short EMPDamage;
  26.  
  27.  
  28. } EUDSettings;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement