Config.h 385 B

12345678910111213141516171819202122232425
  1. // Copyright (C) 2009-2016, Panagiotis Christopoulos Charitos.
  2. // All rights reserved.
  3. // Code licensed under the BSD License.
  4. // http://www.anki3d.org/LICENSE
  5. #pragma once
  6. #include <anki/misc/ConfigSet.h>
  7. namespace anki
  8. {
  9. /// @addtogroup core
  10. /// @{
  11. /// Global configuration set
  12. class Config : public ConfigSet
  13. {
  14. public:
  15. Config();
  16. ~Config();
  17. };
  18. /// @}
  19. } // end namespace anki