ProjectBuildSettings.h 379 B

1234567891011121314151617181920212223242526
  1. #pragma once
  2. #include <Atomic/Core/Object.h>
  3. using namespace Atomic;
  4. namespace ToolCore
  5. {
  6. class ProjectBuildSettings : public Object
  7. {
  8. OBJECT(ProjectBuildSettings);
  9. public:
  10. /// Construct.
  11. ProjectBuildSettings(Context* context);
  12. /// Destruct.
  13. virtual ~ProjectBuildSettings();
  14. bool Load(const String& path);
  15. void Save(const String& path);
  16. };
  17. }