includeFramework.h 1.3 KB

12345678910111213141516171819202122232425262728293031
  1. 
  2. // Header for including the most commonly needed parts of the framework.
  3. #ifndef DFPSR_INCLUDED_FRAMEWORK
  4. #define DFPSR_INCLUDED_FRAMEWORK
  5. // Strings, buffers, files, et cetera.
  6. #include "includeEssentials.h"
  7. // Types needed to use the APIs
  8. #include "math/includeMath.h" // Mathematical types
  9. #include "collection/includeCollection.h" // Generic collections
  10. // 2D API
  11. #include "api/imageAPI.h" // Creating images and modifying pixels
  12. #include "api/drawAPI.h" // Efficient drawing on images
  13. #include "api/filterAPI.h" // Efficient image generation, resizing and filtering
  14. // 3D API
  15. #include "api/modelAPI.h" // Polygon models for 3D rendering
  16. // GUI API
  17. #include "api/guiAPI.h" // Handling windows, interfaces and components
  18. #include "api/mediaMachineAPI.h" // A machine for running image functions
  19. #include "api/fontAPI.h" // Printing text to images
  20. // Convenient API
  21. #include "api/algorithmAPI.h" // Functions for performing operations on whole collections
  22. #include "api/timeAPI.h" // Methods for time and delays
  23. #include "api/configAPI.h" // Making it easy to load your application's settings from configuration files
  24. // TODO: Create more APIs
  25. #include "gui/VisualTheme.h" // An unfinished system for changing how the GUI looks
  26. #endif