mirror of
https://github.com/FIX94/hbc.git
synced 2024-11-01 16:45:09 +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
|
|
|