stub_config.h 467 B

12345678910111213141516171819
  1. //
  2. // stub_config.h
  3. // pokemon_test_xc
  4. //
  5. // Created by Sam Jaffe on 12/22/18.
  6. // Copyright © 2018 Sam Jaffe. All rights reserved.
  7. //
  8. #pragma once
  9. #include "engine/config.h"
  10. struct Config : public engine::env::Config {
  11. Config();
  12. static Config from_dir(std::string const & dir);
  13. explicit Config(char const * const file) : Config(std::string(file)) {}
  14. explicit Config(std::string const & filename);
  15. explicit Config(Json::Value const & properties);
  16. };