28 lines
379 B
C
28 lines
379 B
C
|
#ifndef __STARTUP_MODEL_H
|
||
|
#define __STARTUP_MODEL_H
|
||
|
|
||
|
//#include "Common/DataProc/DataProc.h"
|
||
|
//#include "Common/HAL/HAL.h"
|
||
|
|
||
|
namespace Page
|
||
|
{
|
||
|
|
||
|
class StartupModel
|
||
|
{
|
||
|
public:
|
||
|
void Init();
|
||
|
void Deinit();
|
||
|
void PlayMusic(const char* music);
|
||
|
void SetEncoderEnable(bool en)
|
||
|
{
|
||
|
//HAL::Encoder_SetEnable(en);
|
||
|
}
|
||
|
|
||
|
private:
|
||
|
//Account* account;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|