UNPKG

jsplanet

Version:

A controller for Trackmania 2020 dedicated server.

16 lines (15 loc) 328 B
class Map { author; authorNickname; filename; name; uid; constructor(name, uid, filename, author, authorNickname) { this.name = name; this.uid = uid; this.filename = filename; this.author = author; this.authorNickname = authorNickname; } } export default Map;