first commit
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
/**
|
||||
* @file gnuboy.h
|
||||
* @brief GNUBoy emulator API
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/**
|
||||
* @brief Initialize GNUBoy emulator
|
||||
*/
|
||||
void gnuboy_init(void);
|
||||
|
||||
/**
|
||||
* @brief Run one emulation frame (60 FPS)
|
||||
*/
|
||||
void gnuboy_run_frame(void);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
Reference in New Issue
Block a user