mirror of
https://github.com/CTCaer/hekate
synced 2024-11-04 19:06:35 +00:00
12 lines
234 B
C
12 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!");
|
|
}
|