mirror of
https://github.com/Kornstalx/5etools-mirror-2.github.io.git
synced 2025-10-28 20:45:35 -05:00
12 lines
254 B
JavaScript
12 lines
254 B
JavaScript
export class InitiativeTrackerConst {
|
|
static SORT_ORDER_ALPHA = "ALPHA";
|
|
static SORT_ORDER_NUM = "NUMBER";
|
|
|
|
static SORT_DIR_ASC = "ASC";
|
|
static SORT_DIR_DESC = "DESC";
|
|
|
|
static DIR_FORWARDS = 1;
|
|
static DIR_BACKWARDS = -1;
|
|
static DIR_NEUTRAL = 0;
|
|
}
|