| 37 | #include "types/game.hpp" |
| 38 | |
| 39 | Sorcery::Training::Training(Context &ctx) |
| 40 | : _ctx{ctx} { |
| 41 | |
| 42 | _initialise(); |
| 43 | |
| 44 | _create = std::make_unique<Create>(_ctx); |
| 45 | }; |
| 46 | |
| 47 | Sorcery::Training::~Training() {} |
| 48 |
nothing calls this directly
no outgoing calls
no test coverage detected