| 48 | |
| 49 | #include <algorithm> |
| 50 | #include <string> |
| 51 | |
| 52 | Sorcery::Engine::Engine(Context &ctx) |
| 53 | : _ctx{ctx} { |
| 54 | |
| 55 | _options = std::make_unique<Options>(_ctx); |
| 56 | _reorder = std::make_unique<Reorder>(_ctx); |
| 57 | _inspect = std::make_unique<Inspect>(_ctx); |
| 58 | _automap = std::make_unique<Automap>(_ctx); |
| 59 | _graveyard = std::make_unique<Graveyard>(_ctx); |
| 60 | |
| 61 | _initialise(); |
| 62 | }; |
| 63 |
nothing calls this directly
no outgoing calls
no test coverage detected