mirror of
https://github.com/pret/pokefirered.git
synced 2026-05-18 19:05:09 -05:00
18 lines
337 B
C
18 lines
337 B
C
#ifndef GUARD_WONDER_NEWS_H
|
|
#define GUARD_WONDER_NEWS_H
|
|
|
|
#include "global.h"
|
|
|
|
enum {
|
|
WONDER_NEWS_NONE,
|
|
WONDER_NEWS_RECV_FRIEND,
|
|
WONDER_NEWS_RECV_WIRELESS,
|
|
WONDER_NEWS_SENT,
|
|
};
|
|
|
|
void WonderNews_SetReward(u32 newsType);
|
|
void WonderNews_Reset(void);
|
|
void WonderNews_IncrementStepCounter(void);
|
|
|
|
#endif //GUARD_WONDER_NEWS_H
|