diff options
Diffstat (limited to 'src/combi')
| -rw-r--r-- | src/combi/data_combi.c | 6 | ||||
| -rw-r--r-- | src/combi/data_combi.h | 8 |
2 files changed, 14 insertions, 0 deletions
diff --git a/src/combi/data_combi.c b/src/combi/data_combi.c new file mode 100644 index 0000000..7fc9b46 --- /dev/null +++ b/src/combi/data_combi.c @@ -0,0 +1,6 @@ +#include "data_combi.h" + +#include "assets/jp/combi/data_combi_table.inc.c" +// TODO: // Determine whether define is needed at all; it is not included in this segment, +// but present in DnM+ as `data_combi_table_number`. +#define DATA_COMBI_TABLE_NUMBER = ARRAY_COUNT(data_combi_table); diff --git a/src/combi/data_combi.h b/src/combi/data_combi.h new file mode 100644 index 0000000..08523d5 --- /dev/null +++ b/src/combi/data_combi.h @@ -0,0 +1,8 @@ +#ifndef OBJECT_DATA_COMBI_H +#define OBJECT_DATA_COMBI_H + +#include "m_field_make.h" + +extern FieldMakeComboInfo data_combi_table[]; + +#endif |
