mirror of
https://github.com/fail0verflow/hbc.git
synced 2024-11-17 07:09:21 +01:00
16 lines
204 B
C
16 lines
204 B
C
#ifndef _M_MAIN_H_
|
|
#define _M_MAIN_H_
|
|
|
|
#include <gctypes.h>
|
|
|
|
#include "view.h"
|
|
|
|
view * m_main_init (void);
|
|
void m_main_deinit (void);
|
|
void m_main_theme_reinit (void);
|
|
|
|
void m_main_update (void);
|
|
|
|
#endif
|
|
|