1
0
Fork 0
mirror of https://github.com/CTCaer/hekate.git synced 2024-09-20 05:53:34 +01:00
hekate/modules/simple_sample/module_sample.c
2018-08-21 04:14:31 +03:00

13 lines
234 B
C

/* Sample Hekate Module
2018 - M4xw
*/
#include "../../common/common_module.h"
#include "../../common/common_gfx.h"
#include "gfx/gfx.h"
void _modInit(void *moduleConfig, bdkParams_t bp)
{
gfx_puts(bp->gfxCon, "Hello World!");
}