1
0
Fork 0
mirror of https://github.com/CTCaer/hekate.git synced 2024-11-10 04:21:45 +00:00
hekate/modules/simple_sample/module_sample.c

11 lines
168 B
C
Raw Normal View History

2018-08-07 15:53:58 +01:00
/* Sample Hekate Module
2018 - M4xw
*/
#include "../../common/common_module.h"
2018-08-13 09:58:24 +01:00
void _modInit(cbMainModule_t cb, pmoduleConfiguration_t mc)
2018-08-07 15:53:58 +01:00
{
cb("Hello World!");
}