includeFramework.h 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. // Header for including the most commonly needed parts of the framework
  2. #ifndef DFPSR_INCLUDED_FRAMEWORK
  3. #define DFPSR_INCLUDED_FRAMEWORK
  4. // Needed to use the APIs (exposed value types that will never change)
  5. #include "math/includeMath.h"
  6. #include "base/text.h"
  7. // Additional functionality for convenience (not to be used in any API)
  8. #include "collection/includeCollection.h" // Safer and easier to use than std collections
  9. // 2D API
  10. #include "api/imageAPI.h" // Creating images and modifying pixels
  11. #include "api/drawAPI.h" // Efficient drawing on images
  12. // 3D API
  13. #include "api/modelAPI.h" // Polygon models for 3D rendering
  14. // GUI API
  15. #include "api/guiAPI.h" // Handling windows, interfaces and components
  16. #include "api/mediaMachineAPI.h" // A machine for running image functions
  17. #include "api/fontAPI.h" // Printing text to images
  18. // Convenient API
  19. #include "api/timeAPI.h" // Methods for time and delays
  20. #include "api/configAPI.h" // Making it easy to load your application's settings from configuration files
  21. // TODO: Create more APIs
  22. #include "gui/VisualTheme.h" // Place in the gui API
  23. #endif