mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-07 01:54:57 -05:00
11 lines
194 B
C
11 lines
194 B
C
#ifndef POKEPLATINUM_STRUCT_SENTENCE_H
|
|
#define POKEPLATINUM_STRUCT_SENTENCE_H
|
|
|
|
typedef struct {
|
|
u16 type;
|
|
u16 id;
|
|
u16 words[2];
|
|
} Sentence;
|
|
|
|
#endif // POKEPLATINUM_STRUCT_SENTENCE_H
|