"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.HiLo = void0;
/**
* The High and Low id which can be converted to a player tag
*/classHiLo {
constructor(high, low) {
this.high = high;
this.low = low;
}
}
exports.HiLo = HiLo;