includeFramework.h 1.2 KB

1234567891011121314151617181920212223242526272829303132
  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"
  9. // Additional functionality for convenience (not to be used in any API)
  10. #include "collection/includeCollection.h" // Safer and easier to use than std collections
  11. // 2D API
  12. #include "api/imageAPI.h" // Creating images and modifying pixels
  13. #include "api/drawAPI.h" // Efficient drawing on images
  14. #include "api/filterAPI.h" // Efficient image generation, resizing and filtering
  15. // 3D API
  16. #include "api/modelAPI.h" // Polygon models for 3D rendering
  17. // GUI API
  18. #include "api/guiAPI.h" // Handling windows, interfaces and components
  19. #include "api/mediaMachineAPI.h" // A machine for running image functions
  20. #include "api/fontAPI.h" // Printing text to images
  21. // Convenient API
  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" // Place in the gui API
  26. #endif