MCPcopy Create free account
hub / github.com/davemoore22/sorcery / Engine

Method Engine

src/engine/engine.cpp:50–60  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

48
49#include <algorithm>
50#include <string>
51
52Sorcery::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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected