#include "game_types.h"

/* Level_Veneer4600 @ 0x08004600 (real 40B) -- compares halfwords at a+136 vs b+136 (greater-than). Mirrors src/matched/Level_Veneer4600.c. */
/* Returns whether the halfword at a+136 is greater than the one at b+136. */
int Level_Veneer4600(char *a, char *b)
{
    return *(short *)(a + 136) > *(short *)(b + 136);
}
