quac_settings.h 336 B

1234567891011121314
  1. #pragma once
  2. #include "quac.h"
  3. /** Set the default Settings for Quac */
  4. void quac_set_default_settings(App* app);
  5. /** Load the Settings from the .quac.conf file. If not found,
  6. * then load the defaults.
  7. */
  8. void quac_load_settings(App* app);
  9. /** Save the current settings to the .quac.conf file */
  10. void quac_save_settings(App* app);