Differences From Artifact [5f07c527d6]:
- File heromesh.h — part of check-in [a84d299534] at 2020-12-10 22:26:17 on branch trunk — Implement object examine mode better now. (user: user, size: 6809) [annotate] [blame] [check-ins using]
To Artifact [63c8f5b734]:
- File heromesh.h — part of check-in [ba612cfc1c] at 2020-12-12 05:56:52 on branch trunk — Implement for/next loops, and add NoIgnore() in some more places where needed (user: user, size: 6826) [annotate] [blame] [check-ins using]
| ︙ | |||
10 11 12 13 14 15 16 17 18 19 20 21 22 23 | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | + |
#define TY_NUMBER 0
#define TY_CLASS 1
#define TY_MESSAGE 2
#define TY_LEVELSTRING 3
#define TY_STRING 4
#define TY_SOUND 5
#define TY_USOUND 6
#define TY_FOR 7
#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;
|
| ︙ |