108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
X should be replaced by any digit or uppercase letter; that will be
displayed, and if clicked, it represents that key code.
\xXX
Hexadecimal escape, where XX is a hexadecimal number from 01 to FF,
and displays a graphic character with the given PC character code.
=== Preprocessor ===
Free Hero Mesh includes a macro preprocessor, which you may use if wanted.
All preprocessor commands are in braces; that constitutes a preprocessor
token, which may contain other tokens as arguments.
|
>
>
>
>
>
>
|
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
X should be replaced by any digit or uppercase letter; that will be
displayed, and if clicked, it represents that key code.
\xXX
Hexadecimal escape, where XX is a hexadecimal number from 01 to FF,
and displays a graphic character with the given PC character code.
\"
Literal quotation mark.
\\
Literal backslash.
=== Preprocessor ===
Free Hero Mesh includes a macro preprocessor, which you may use if wanted.
All preprocessor commands are in braces; that constitutes a preprocessor
token, which may contain other tokens as arguments.
|