UNPKG
jsplanet
Version:
latest (0.5.1)
0.5.1
0.5.0
0.4.3
0.4.2
0.4.1
0.4.0
0.3.0
0.2.0
0.1.1
0.1.0
A controller for Trackmania 2020 dedicated server.
gitlab.com/jsplanet/jsplanet
jsplanet
/
dist
/
structures
/
Map.js
16 lines
(15 loc)
•
328 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;