mirror of
https://github.com/pmret/papermario.git
synced 2024-11-08 20:12:30 +01:00
8fbdc83055
* area_arn/arn_02 * Signed StoryProgress enum * arn_03 * Update scripts * arn_04 * fix kmr * Broken for Ethan * Commiting before maybe breaking everything * Fix star rod * Add funcs * arn_05 * arn_07 * arn_08/arn_09 * Cleanup prototypes * arn_11/12/13 * Cleanup * Cleanup * Review * Add npc flag * Comments * dgb_01 * dgb_02 * dgb_03 * dgb_04 * Fixup commented functions * dgb_05 * dgb_06 * dgb_07 * dgb_08 * dgb_09 * dgb_10 * dgb_11 * dgb_12 * dgb_15 * dgb_13 * dgb_14 * dgb_16 * dgb_17 * dgb_18 * Dumb newlines * Replacing some funcs, scared I'll break everything to commit NOW! * More * More * More * a * b * c * d * e * f * remove asm * Move newlines
10 lines
207 B
C
10 lines
207 B
C
#ifndef _MESSAGES_H_
|
|
#define _MESSAGES_H_
|
|
|
|
#include "types.h"
|
|
|
|
// Prefer editing splat.yaml's msg ids section than using this directly!
|
|
#define MESSAGE_ID(section, index) (((section << 16) + index))
|
|
|
|
#endif
|