#include "game_types.h"

/* Script_ReadByte36 @ 0x08014D30 (real 18B) -- reads script byte into field 36, advances cursor. Mirrors src/matched/Script_ReadByte36.c. */
/* Reads the byte under the cursor into field 36, then advances the cursor. */
void Script_ReadByte36(char *st)
{
    unsigned char **cursor = (unsigned char **)(st + 64);
    unsigned char *p = *cursor;
    st[36] = (char)*p;
    *cursor = p + 1;
}
