Config.h 385 B

12345678910111213141516171819202122232425
  1. // Copyright (C) 2009-2015, 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. /// @addtogroup core
  9. /// @{
  10. /// Global configuration set
  11. class Config: public ConfigSet
  12. {
  13. public:
  14. Config();
  15. ~Config();
  16. };
  17. /// @}
  18. } // end namespace anki