14 lines
238 B
C++
14 lines
238 B
C++
#pragma once
|
|
|
|
#include "script/engine/Engine.hpp"
|
|
|
|
|
|
namespace atlas::script::module::debug {
|
|
|
|
/**
|
|
* Load the debug features into an Atlas engine
|
|
* @param atlasEngine the Atlas engine
|
|
*/
|
|
void load(const engine::Engine* atlasEngine);
|
|
|
|
}
|