specify namespace scope for doxygen

This commit is contained in:
scawful
2024-04-14 10:08:33 -05:00
parent 2aa9bce9ca
commit 5aae3bb1ef
3 changed files with 23 additions and 1 deletions

View File

@@ -11,8 +11,17 @@
namespace yaze {
namespace app {
/**
* @namespace yaze::app::emu
* @brief SNES Emulation and debugging tools.
*/
namespace emu {
/**
* @class Emulator
* @brief A class for emulating and debugging SNES ROMs.
*/
class Emulator : public SharedROM {
public:
void Run();