mirror of
https://github.com/Kornstalx/5etools-mirror-2.github.io.git
synced 2026-01-14 05:47:50 -06: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;
|
|
}
|