UNPKG

eu4-parser

Version:

Parser for Europa Universalis IV savegames

10 lines (9 loc) 187 B
export class Position { constructor(line=1, column=1) { this.line = line; this.column = column; } toString() { return `(${this.line}, ${this.column})`; } }