mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-03-23 18:55:30 -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
|