Quality Slider for Android (only)

This commit is contained in:
brausjonas
2023-03-31 16:38:47 +02:00
parent c22f97fe18
commit 9afc7778b1
12 changed files with 743 additions and 24 deletions
+18
View File
@@ -23,4 +23,22 @@ public class Client
this.socket = socket;
this.name = name;
}
public void close()
{
try
{
input.close();
}catch(Exception e)
{
}
try
{
output.close();
}catch(Exception e)
{
}
}
}