Hello I want to use multithreading to save and load a map, I already have a function who save the map and another one who load the map but when these function are called the game freeze. So is there any way to use multithreading only for these function to save the map and play at the same time?
Asked
Active
Viewed 39 times
0
-
1You might want to include some code to enable us to dig into the issue better. Pls refer this: https://stackoverflow.com/help/mcve – priyank-sriv Apr 27 '19 at 18:50
-
You can create a new `Thread` and `start` it, see in example https://stackoverflow.com/questions/2865315/threads-in-java – Daniele Apr 28 '19 at 01:38