blob: 2d2b5c391b682ed22ee0b9c99f3ff0e70735e2b3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
package main;
import java.io.File;
import java.util.ArrayList;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
public class Difficulty
{
public String title;
public ObservableList<LeaderboardEntry> leaderboard = FXCollections.observableArrayList();
public File notes;
public String toString()
{
return title;
}
}
|