Differences From Artifact [e799f3d4f3]:
- File heromesh.h — part of check-in [9959860889] at 2021-04-22 03:00:57 on branch trunk — Add possibility of additional code pages. (user: user, size: 8613) [annotate] [blame] [check-ins using]
To Artifact [ca9d66727e]:
- File heromesh.h — part of check-in [f4215e7216] at 2021-04-26 01:05:54 on branch trunk — Implement case blocks. (user: user, size: 8632) [annotate] [blame] [check-ins using]
︙ | |||
13 14 15 16 17 18 19 20 21 22 23 24 25 26 | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | + | #define TY_LEVELSTRING 3 #define TY_STRING 4 #define TY_SOUND 5 #define TY_USOUND 6 #define TY_FOR 7 #define TY_MARK 8 #define TY_ARRAY 9 #define TY_CODE 10 #define TY_MAXTYPE 15 // The level file format requires type codes 0 to 3 to be as is; other codes may change. typedef struct { union { Sint32 s; Uint32 u; |
︙ |