Compare commits
No commits in common. "2418e2aed7cb6611709864b2feb8bb62cc0044aa" and "5f41bda3010fbce9b040bb126003fee33ebd7b38" have entirely different histories.
2418e2aed7
...
5f41bda301
|
@ -1,4 +0,0 @@
|
||||||
Ioana,25,Hitori4x4_leicht.csv,0
|
|
||||||
test,22,Hitori4x4_leicht.csv,0
|
|
||||||
Test2,72,Hitori5x5_leicht.csv,0
|
|
||||||
Test3,100,Hitori8x8_medium.csv,0
|
|
|
@ -8,7 +8,7 @@ import java.util.concurrent.locks.ReentrantLock;
|
||||||
|
|
||||||
public class HighscoreManager {
|
public class HighscoreManager {
|
||||||
|
|
||||||
private static final String HIGHSCORE_FILE = "Hitori/src/main/highscores/highscores.txt";
|
private static final String HIGHSCORE_FILE = "highscores.txt";
|
||||||
private static final ReentrantLock fileLock = new ReentrantLock();
|
private static final ReentrantLock fileLock = new ReentrantLock();
|
||||||
// Highscore-Datenstruktur
|
// Highscore-Datenstruktur
|
||||||
private final List<Highscore> highscoreList = new ArrayList<>();
|
private final List<Highscore> highscoreList = new ArrayList<>();
|
||||||
|
|
|
@ -7,6 +7,7 @@ import PR2.HitoriSpiel.Fassade.Setup;
|
||||||
|
|
||||||
import javax.swing.*;
|
import javax.swing.*;
|
||||||
import java.awt.*;
|
import java.awt.*;
|
||||||
|
import javax.swing.JPanel;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Random;
|
import java.util.Random;
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
NameTest,123,Hitori4x4
|
||||||
|
Test,456,Hitori4x4
|
||||||
|
Ioana,234,Hitori8x8
|
Loading…
Reference in New Issue