1<?php
2
3trait autotooltip4_consts {
4	// Values from the file
5	static $ORIG = 0;
6	static $TO = 1;
7	static $IN = 2;
8	static $FLAGS = 3;
9	// Calculated values
10	static $MATCH = 4;
11	static $TEXT = 5;
12	static $TOOLTIP = 6;
13	static $ONCE = 7;
14	static $INWORD = 8;
15
16	static $MAX_VAL = 8; // Must equal the highest value in this file.
17}
18