Files
Archimedes/modules/examples/TestNotCurses/src/TestNotCurses.h
2025-04-13 13:37:32 -05:00

18 lines
336 B
C++

#include "Archimedes.h"
#include <notcurses/notcurses.h>
class TestNotCurses : public Archimedes::Module {
public:
TestNotCurses(Archimedes::App*, void*);
~TestNotCurses();
void run();
void onLoad();
};
#ifdef TESTNOTCURSES_DYNAMIC
#define MODULE_TYPE TestNotCurses
#include "endModule.h"
#endif