Compare commits
2 Commits
05df8a56a7
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 39e2475983 | |||
| 7dd3f198db |
@@ -9,6 +9,14 @@ Une application de génération et résolution de MultiDoku.
|
|||||||
- Sudoku saves
|
- Sudoku saves
|
||||||
- Multiplayer
|
- Multiplayer
|
||||||
|
|
||||||
|
## Screenshots 🖼
|
||||||
|
|
||||||
|
[[screenshots/menu.png]]
|
||||||
|
|
||||||
|
[[screenshots/solo.png]]
|
||||||
|
|
||||||
|
[[screenshots/multi.png]]
|
||||||
|
|
||||||
## Develop ☝🤓
|
## Develop ☝🤓
|
||||||
|
|
||||||
**Pour plus de détails sur la conception et autres, regarder le 👉 [wiki](https://git.ale-pri.com/Ryuk/Sudoku/wiki)** 👈
|
**Pour plus de détails sur la conception et autres, regarder le 👉 [wiki](https://git.ale-pri.com/Ryuk/Sudoku/wiki)** 👈
|
||||||
|
|||||||
@@ -71,24 +71,28 @@ public class SudokuRenderer {
|
|||||||
|
|
||||||
private void renderPopup() {
|
private void renderPopup() {
|
||||||
if (ImGui.beginPopup("editPopup")) {
|
if (ImGui.beginPopup("editPopup")) {
|
||||||
Block block = currentCell.getBlock();
|
if (currentCell == null)
|
||||||
int symbolCount = block.getCells().size();
|
ImGui.closeCurrentPopup();
|
||||||
for (int i = 0; i < symbolCount; i++) {
|
else {
|
||||||
if ((i + 1) % (int) (Math.sqrt(symbolCount)) != 1)
|
Block block = currentCell.getBlock();
|
||||||
ImGui.sameLine();
|
int symbolCount = block.getCells().size();
|
||||||
if (currentCell.getSymbolIndex() == i) {
|
for (int i = 0; i < symbolCount; i++) {
|
||||||
if (ImGui.button("X", cellSize)) {
|
if ((i + 1) % (int) (Math.sqrt(symbolCount)) != 1)
|
||||||
currentCell.setSymbolIndex(Cell.NOSYMBOL);
|
ImGui.sameLine();
|
||||||
this.onCellChange.emit(currentCell);
|
if (currentCell.getSymbolIndex() == i) {
|
||||||
ImGui.closeCurrentPopup();
|
if (ImGui.button("X", cellSize)) {
|
||||||
}
|
currentCell.setSymbolIndex(Cell.NOSYMBOL);
|
||||||
} else {
|
this.onCellChange.emit(currentCell);
|
||||||
if (ImGui.button(Options.Symboles.getSymbols().get(i), cellSize)) {
|
ImGui.closeCurrentPopup();
|
||||||
currentCell.setSymbolIndex(i);
|
}
|
||||||
this.onCellChange.emit(currentCell);
|
} else {
|
||||||
if (this.doku.getDoku().isSolved())
|
if (ImGui.button(Options.Symboles.getSymbols().get(i), cellSize)) {
|
||||||
this.onResolve.emit();
|
currentCell.setSymbolIndex(i);
|
||||||
ImGui.closeCurrentPopup();
|
this.onCellChange.emit(currentCell);
|
||||||
|
if (this.doku.getDoku().isSolved())
|
||||||
|
this.onResolve.emit();
|
||||||
|
ImGui.closeCurrentPopup();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,54 +1,40 @@
|
|||||||
package network;
|
package network;
|
||||||
|
|
||||||
import java.io.ByteArrayInputStream;
|
|
||||||
import java.io.ByteArrayOutputStream;
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.ObjectInputStream;
|
|
||||||
import java.io.ObjectOutputStream;
|
import java.io.ObjectOutputStream;
|
||||||
import java.net.DatagramPacket;
|
import java.net.Socket;
|
||||||
import java.net.DatagramSocket;
|
|
||||||
import java.net.InetSocketAddress;
|
|
||||||
|
|
||||||
import network.protocol.Packet;
|
import network.protocol.Packet;
|
||||||
import network.protocol.PacketVisitor;
|
import network.protocol.PacketVisitor;
|
||||||
|
|
||||||
public abstract class Connexion implements PacketVisitor {
|
public abstract class Connexion implements PacketVisitor {
|
||||||
|
|
||||||
|
final Socket socket;
|
||||||
|
private final ObjectOutputStream objectOutputStream;
|
||||||
|
private final ConnexionThread connexionThread;
|
||||||
|
|
||||||
protected final DatagramSocket socket;
|
public Connexion(Socket socket) throws IOException {
|
||||||
protected final InetSocketAddress address;
|
|
||||||
|
|
||||||
public Connexion(DatagramSocket socket, InetSocketAddress address) {
|
|
||||||
this.socket = socket;
|
this.socket = socket;
|
||||||
this.address = address;
|
this.objectOutputStream = new ObjectOutputStream(this.socket.getOutputStream());
|
||||||
|
this.connexionThread = new ConnexionThread(this);
|
||||||
|
this.connexionThread.start();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static record ReadInfo(Packet packet, InetSocketAddress address) {}
|
public boolean isClosed() {
|
||||||
|
return this.socket.isClosed();
|
||||||
public static ReadInfo readPacket(final DatagramSocket socket)
|
|
||||||
throws IOException, ClassNotFoundException {
|
|
||||||
byte[] buffer = new byte[65535];
|
|
||||||
DatagramPacket dataPacket = new DatagramPacket(buffer, buffer.length);
|
|
||||||
socket.receive(dataPacket);
|
|
||||||
|
|
||||||
InetSocketAddress address = new InetSocketAddress(dataPacket.getAddress(), dataPacket.getPort());
|
|
||||||
|
|
||||||
ObjectInputStream ois = new ObjectInputStream(new ByteArrayInputStream(dataPacket.getData()));
|
|
||||||
Packet packet = (Packet) ois.readObject();
|
|
||||||
return new ReadInfo(packet, address);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void sendPacket(Packet packet) {
|
public synchronized void sendPacket(Packet packet) {
|
||||||
try {
|
try {
|
||||||
ByteArrayOutputStream stream = new ByteArrayOutputStream();
|
objectOutputStream.writeObject(packet);
|
||||||
ObjectOutputStream oos = new ObjectOutputStream(stream);
|
objectOutputStream.flush();
|
||||||
oos.writeObject(packet);
|
|
||||||
oos.flush();
|
|
||||||
byte[] data = stream.toByteArray();
|
|
||||||
DatagramPacket dataPacket = new DatagramPacket(data, data.length, this.address.getAddress(),
|
|
||||||
this.address.getPort());
|
|
||||||
this.socket.send(dataPacket);
|
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
e.printStackTrace();
|
System.err.println("Error while sending packet ! " + e.getLocalizedMessage());
|
||||||
|
close();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void close() {
|
||||||
|
this.connexionThread.cancel();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
44
app/src/main/java/network/ConnexionThread.java
Normal file
44
app/src/main/java/network/ConnexionThread.java
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
package network;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.ObjectInputStream;
|
||||||
|
|
||||||
|
import network.protocol.Packet;
|
||||||
|
|
||||||
|
public class ConnexionThread extends Thread {
|
||||||
|
|
||||||
|
private final Connexion connexion;
|
||||||
|
private final ObjectInputStream objectInputStream;
|
||||||
|
|
||||||
|
public ConnexionThread(Connexion connexion) throws IOException {
|
||||||
|
this.connexion = connexion;
|
||||||
|
this.objectInputStream = new ObjectInputStream(this.connexion.socket.getInputStream());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
while (!interrupted()) {
|
||||||
|
try {
|
||||||
|
// System.out.println(objectInputStream.available());
|
||||||
|
Object o = objectInputStream.readObject();
|
||||||
|
if (o instanceof Packet packet) {
|
||||||
|
connexion.visit(packet);
|
||||||
|
}
|
||||||
|
} catch (ClassNotFoundException | IOException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
this.connexion.close();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void cancel() {
|
||||||
|
try {
|
||||||
|
objectInputStream.close();
|
||||||
|
} catch (IOException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
interrupt();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -1,13 +1,11 @@
|
|||||||
package network.client;
|
package network.client;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.net.DatagramSocket;
|
import java.net.Socket;
|
||||||
import java.net.InetSocketAddress;
|
|
||||||
import java.net.UnknownHostException;
|
import java.net.UnknownHostException;
|
||||||
|
|
||||||
import game.Player;
|
import game.Player;
|
||||||
import network.Connexion;
|
import network.Connexion;
|
||||||
import network.protocol.Packet;
|
|
||||||
import network.protocol.packets.ChangeCellPacket;
|
import network.protocol.packets.ChangeCellPacket;
|
||||||
import network.protocol.packets.ConnexionInfoPacket;
|
import network.protocol.packets.ConnexionInfoPacket;
|
||||||
import network.protocol.packets.DisconnectPacket;
|
import network.protocol.packets.DisconnectPacket;
|
||||||
@@ -23,35 +21,18 @@ import sudoku.io.SudokuSerializer;
|
|||||||
public class ClientConnexion extends Connexion {
|
public class ClientConnexion extends Connexion {
|
||||||
|
|
||||||
private final Client client;
|
private final Client client;
|
||||||
private final Thread readThread;
|
|
||||||
|
|
||||||
public ClientConnexion(String address, short port, Client client) throws UnknownHostException, IOException {
|
public ClientConnexion(String address, short port, Client client) throws UnknownHostException, IOException {
|
||||||
super(new DatagramSocket(), new InetSocketAddress(address, port));
|
super(new Socket(address, port));
|
||||||
this.client = client;
|
this.client = client;
|
||||||
this.readThread = new Thread(this::readPackets);
|
|
||||||
this.readThread.start();
|
|
||||||
}
|
|
||||||
|
|
||||||
private void readPackets() {
|
|
||||||
while (!Thread.interrupted()) {
|
|
||||||
try {
|
|
||||||
Packet packet = Connexion.readPacket(this.socket).packet();
|
|
||||||
|
|
||||||
visit(packet);
|
|
||||||
} catch (IOException e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
} catch (ClassNotFoundException e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
public void close() {
|
public void close() {
|
||||||
if (!this.socket.isClosed()) {
|
if (!this.isClosed()) {
|
||||||
|
super.close();
|
||||||
sendPacket(new DisconnectPacket(""));
|
sendPacket(new DisconnectPacket(""));
|
||||||
client.onDisconnect.emit();
|
client.onDisconnect.emit();
|
||||||
this.readThread.interrupt();
|
|
||||||
this.socket.close();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,15 +1,14 @@
|
|||||||
package network.server;
|
package network.server;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.net.DatagramSocket;
|
import java.net.ServerSocket;
|
||||||
import java.net.InetSocketAddress;
|
|
||||||
import java.time.Instant;
|
import java.time.Instant;
|
||||||
import java.util.HashMap;
|
import java.util.ArrayList;
|
||||||
import java.util.Map;
|
import java.util.List;
|
||||||
|
|
||||||
import game.Game;
|
import game.Game;
|
||||||
import game.Game.GameState;
|
|
||||||
import game.Player;
|
import game.Player;
|
||||||
|
import game.Game.GameState;
|
||||||
import network.protocol.Packet;
|
import network.protocol.Packet;
|
||||||
import network.protocol.packets.EndGamePacket;
|
import network.protocol.packets.EndGamePacket;
|
||||||
import network.protocol.packets.StartGamePacket;
|
import network.protocol.packets.StartGamePacket;
|
||||||
@@ -18,17 +17,17 @@ import sudoku.structure.MultiDoku;
|
|||||||
|
|
||||||
public class Server {
|
public class Server {
|
||||||
|
|
||||||
final DatagramSocket serverSocket;
|
final ServerSocket serverSocket;
|
||||||
final Map<InetSocketAddress, ServerConnexion> connexions;
|
final List<ServerConnexion> connexions;
|
||||||
private final ServerReadThread acceptThread;
|
private final ServerAcceptThread acceptThread;
|
||||||
private final ServerLogicThread logicThread;
|
private final ServerLogicThread logicThread;
|
||||||
private final Game game;
|
private final Game game;
|
||||||
private int nextPlayerId = 0;
|
private int nextPlayerId = 0;
|
||||||
|
|
||||||
public Server(short port) throws IOException {
|
public Server(short port) throws IOException {
|
||||||
this.serverSocket = new DatagramSocket(port);
|
this.serverSocket = new ServerSocket(port);
|
||||||
this.connexions = new HashMap<>();
|
this.connexions = new ArrayList<>();
|
||||||
this.acceptThread = new ServerReadThread(this);
|
this.acceptThread = new ServerAcceptThread(this);
|
||||||
this.acceptThread.start();
|
this.acceptThread.start();
|
||||||
this.logicThread = new ServerLogicThread(this);
|
this.logicThread = new ServerLogicThread(this);
|
||||||
this.logicThread.start();
|
this.logicThread.start();
|
||||||
@@ -36,7 +35,7 @@ public class Server {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void broadcastPacket(Packet packet) {
|
public void broadcastPacket(Packet packet) {
|
||||||
for (ServerConnexion connexion : this.connexions.values()) {
|
for (ServerConnexion connexion : this.connexions) {
|
||||||
connexion.sendPacket(packet);
|
connexion.sendPacket(packet);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -51,9 +50,8 @@ public class Server {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private void checkConnexions() {
|
private void checkConnexions() {
|
||||||
for (var it = connexions.entrySet().iterator(); it.hasNext();) {
|
for (var it = connexions.iterator(); it.hasNext();) {
|
||||||
var entry = it.next();
|
ServerConnexion connexion = it.next();
|
||||||
ServerConnexion connexion = entry.getValue();
|
|
||||||
if (!connexion.update()) {
|
if (!connexion.update()) {
|
||||||
connexion.close();
|
connexion.close();
|
||||||
connexion.nukeConnection();
|
connexion.nukeConnection();
|
||||||
@@ -70,10 +68,10 @@ public class Server {
|
|||||||
public void stop() {
|
public void stop() {
|
||||||
this.acceptThread.cancel();
|
this.acceptThread.cancel();
|
||||||
this.logicThread.cancel();
|
this.logicThread.cancel();
|
||||||
for (ServerConnexion connexion : this.connexions.values()) {
|
for (ServerConnexion connexion : this.connexions) {
|
||||||
connexion.nukeConnection();
|
connexion.nukeConnection();
|
||||||
|
connexion.close();
|
||||||
}
|
}
|
||||||
this.serverSocket.close();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public Player addPlayer(String pseudo) {
|
public Player addPlayer(String pseudo) {
|
||||||
@@ -90,7 +88,7 @@ public class Server {
|
|||||||
public void startGame(MultiDoku doku, long gameDuration) {
|
public void startGame(MultiDoku doku, long gameDuration) {
|
||||||
Instant now = Instant.now();
|
Instant now = Instant.now();
|
||||||
this.game.startGame(doku, now, gameDuration);
|
this.game.startGame(doku, now, gameDuration);
|
||||||
for (ServerConnexion connexion : this.connexions.values()) {
|
for (ServerConnexion connexion : this.connexions) {
|
||||||
connexion.setSudoku(doku.clone());
|
connexion.setSudoku(doku.clone());
|
||||||
}
|
}
|
||||||
broadcastPacket(new StartGamePacket(SudokuSerializer.serializeSudoku(doku).toString(), now, gameDuration));
|
broadcastPacket(new StartGamePacket(SudokuSerializer.serializeSudoku(doku).toString(), now, gameDuration));
|
||||||
|
|||||||
36
app/src/main/java/network/server/ServerAcceptThread.java
Normal file
36
app/src/main/java/network/server/ServerAcceptThread.java
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
package network.server;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.net.Socket;
|
||||||
|
|
||||||
|
public class ServerAcceptThread extends Thread {
|
||||||
|
|
||||||
|
private final Server server;
|
||||||
|
|
||||||
|
public ServerAcceptThread(Server server) {
|
||||||
|
this.server = server;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void cancel() {
|
||||||
|
try {
|
||||||
|
this.server.serverSocket.close();
|
||||||
|
} catch (IOException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
interrupt();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
try {
|
||||||
|
while(!interrupted()) {
|
||||||
|
Socket newConnection = this.server.serverSocket.accept();
|
||||||
|
ServerConnexion serverConnection = new ServerConnexion(newConnection, this.server);
|
||||||
|
this.server.connexions.add(serverConnection);
|
||||||
|
}
|
||||||
|
} catch(IOException e) {
|
||||||
|
// e.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -1,11 +1,11 @@
|
|||||||
package network.server;
|
package network.server;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.net.InetSocketAddress;
|
import java.net.Socket;
|
||||||
|
|
||||||
import game.Game;
|
import game.Game;
|
||||||
import game.Game.GameState;
|
|
||||||
import game.Player;
|
import game.Player;
|
||||||
|
import game.Game.GameState;
|
||||||
import network.Connexion;
|
import network.Connexion;
|
||||||
import network.protocol.packets.ChangeCellPacket;
|
import network.protocol.packets.ChangeCellPacket;
|
||||||
import network.protocol.packets.ConnexionInfoPacket;
|
import network.protocol.packets.ConnexionInfoPacket;
|
||||||
@@ -29,14 +29,14 @@ public class ServerConnexion extends Connexion {
|
|||||||
private Player player = null;
|
private Player player = null;
|
||||||
private MultiDoku doku;
|
private MultiDoku doku;
|
||||||
|
|
||||||
public ServerConnexion(InetSocketAddress remoteAddress, Server server) throws IOException {
|
public ServerConnexion(Socket socket, Server server) throws IOException {
|
||||||
super(server.serverSocket, remoteAddress);
|
super(socket);
|
||||||
this.server = server;
|
this.server = server;
|
||||||
this.keepAliveHandler = new KeepAliveHandler(this);
|
this.keepAliveHandler = new KeepAliveHandler(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean update() {
|
public boolean update() {
|
||||||
if (shouldClose)
|
if (shouldClose || isClosed())
|
||||||
return false;
|
return false;
|
||||||
return this.keepAliveHandler.update();
|
return this.keepAliveHandler.update();
|
||||||
}
|
}
|
||||||
@@ -49,6 +49,15 @@ public class ServerConnexion extends Connexion {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public synchronized void close() {
|
||||||
|
if (shouldClose)
|
||||||
|
return;
|
||||||
|
super.close();
|
||||||
|
shouldClose = true;
|
||||||
|
System.out.println("[Server] Closing connexion !");
|
||||||
|
}
|
||||||
|
|
||||||
private void finishLogin() {
|
private void finishLogin() {
|
||||||
// send players that have already joined (excluding this one)
|
// send players that have already joined (excluding this one)
|
||||||
for (Player p : this.server.getGame().getPlayers().values()) {
|
for (Player p : this.server.getGame().getPlayers().values()) {
|
||||||
@@ -78,7 +87,7 @@ public class ServerConnexion extends Connexion {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void visitPacket(DisconnectPacket packet) {
|
public void visitPacket(DisconnectPacket packet) {
|
||||||
//TODO: close connexion
|
close();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -155,8 +164,4 @@ public class ServerConnexion extends Connexion {
|
|||||||
this.server.broadcastPacket(new UpdatePlayerScorePacket(player.getId(), player.getRemainingCells()));
|
this.server.broadcastPacket(new UpdatePlayerScorePacket(player.getId(), player.getRemainingCells()));
|
||||||
}
|
}
|
||||||
|
|
||||||
public void close() {
|
|
||||||
this.shouldClose = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,43 +0,0 @@
|
|||||||
package network.server;
|
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.net.InetSocketAddress;
|
|
||||||
|
|
||||||
import network.Connexion;
|
|
||||||
import network.protocol.Packet;
|
|
||||||
|
|
||||||
public class ServerReadThread extends Thread {
|
|
||||||
|
|
||||||
private final Server server;
|
|
||||||
|
|
||||||
public ServerReadThread(Server server) {
|
|
||||||
this.server = server;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void cancel() {
|
|
||||||
this.server.serverSocket.close();
|
|
||||||
interrupt();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void run() {
|
|
||||||
try {
|
|
||||||
while (!interrupted()) {
|
|
||||||
Connexion.ReadInfo read = Connexion.readPacket(this.server.serverSocket);
|
|
||||||
Packet packet = read.packet();
|
|
||||||
InetSocketAddress address = read.address();
|
|
||||||
|
|
||||||
if (!this.server.connexions.containsKey(address)) {
|
|
||||||
this.server.connexions.put(address, new ServerConnexion(address, server));
|
|
||||||
}
|
|
||||||
|
|
||||||
this.server.connexions.get(address).visit(packet);
|
|
||||||
}
|
|
||||||
} catch (IOException e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
} catch (ClassNotFoundException e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
BIN
screenshots/menu.png
Normal file
BIN
screenshots/menu.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 204 KiB |
BIN
screenshots/multi.png
Normal file
BIN
screenshots/multi.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 236 KiB |
BIN
screenshots/solo.png
Normal file
BIN
screenshots/solo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 242 KiB |
Reference in New Issue
Block a user