diff --git a/tests/test.c b/tests/test.c index b6be478..6f17443 100644 --- a/tests/test.c +++ b/tests/test.c @@ -6,6 +6,11 @@ void logFunction(enum eHyprcursorLogLevel level, char* message) { printf("[hc] %s\n", message); } +/* + hyprlang-test in C. + Renders a cursor shape to /tmp at 48px +*/ + int main(int argc, char** argv) { struct hyprcursor_manager_t* mgr = hyprcursor_manager_create_with_logger(NULL, logFunction); diff --git a/tests/test.cpp b/tests/test.cpp index b404674..0ba938c 100644 --- a/tests/test.cpp +++ b/tests/test.cpp @@ -5,6 +5,11 @@ void logFunction(enum eHyprcursorLogLevel level, char* message) { std::cout << "[hc] " << message << "\n"; } +/* + hyprlang-test in C++. + Renders a cursor shape to /tmp at 48px +*/ + int main(int argc, char** argv) { Hyprcursor::CHyprcursorManager mgr(nullptr, logFunction);