Config.h 436 B

123456789101112131415161718192021222324252627282930
  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. #ifndef ANKI_CORE_CONFIG_H
  6. #define ANKI_CORE_CONFIG_H
  7. #include "anki/misc/ConfigSet.h"
  8. namespace anki {
  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
  20. #endif