| 1234567891011121314151617181920212223242526 |
- #pragma once
- #include <Atomic/Core/Object.h>
- using namespace Atomic;
- namespace ToolCore
- {
- class ProjectBuildSettings : public Object
- {
- OBJECT(ProjectBuildSettings);
- public:
- /// Construct.
- ProjectBuildSettings(Context* context);
- /// Destruct.
- virtual ~ProjectBuildSettings();
- bool Load(const String& path);
- void Save(const String& path);
- };
- }
|