| 12345678910111213141516171819 |
- //
- // stub_config.h
- // pokemon_test_xc
- //
- // Created by Sam Jaffe on 12/22/18.
- // Copyright © 2018 Sam Jaffe. All rights reserved.
- //
- #pragma once
- #include "engine/config.h"
- struct Config : public engine::env::Config {
- Config();
- static Config from_dir(std::string const & dir);
- explicit Config(char const * const file) : Config(std::string(file)) {}
- explicit Config(std::string const & filename);
- explicit Config(Json::Value const & properties);
- };
|