| 54 | } |
| 55 | |
| 56 | void ScriptScanner::Initialize(std::string_view name) |
| 57 | { |
| 58 | this->engine = std::make_unique<Squirrel>(name); |
| 59 | |
| 60 | this->RescanDir(); |
| 61 | |
| 62 | this->ResetEngine(); |
| 63 | } |
| 64 | |
| 65 | ScriptScanner::~ScriptScanner() |
| 66 | { |
nothing calls this directly
no test coverage detected