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
/
Scores.js
12 lines
(11 loc)
•
218 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
class
Scores
{ players; section; teams;
constructor
(section, players, teams) {
this
.section = section;
this
.players = players;
this
.teams = teams; } } export default Scores;