mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-16 11:37:40 +01:00
15 lines
272 B
C
Executable File
15 lines
272 B
C
Executable File
#ifndef GUARD_WONDER_NEWS_H
|
|
#define GUARD_WONDER_NEWS_H
|
|
|
|
enum {
|
|
WONDER_NEWS_NONE,
|
|
WONDER_NEWS_RECV_FRIEND,
|
|
WONDER_NEWS_RECV_WIRELESS,
|
|
WONDER_NEWS_SENT,
|
|
};
|
|
|
|
void WonderNews_Reset(void);
|
|
void WonderNews_SetReward(u32 newsType);
|
|
|
|
#endif //GUARD_WONDER_NEWS_H
|