Advertisement
JackOUT

Untitled

Jan 23rd, 2022
663
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.21 KB | None | 0 0
  1. package games.coob.skywars.model;
  2.  
  3. import java.io.IOException;
  4.  
  5. public interface GameMap {
  6.     void load() throws IOException;
  7.  
  8.     void unload() throws IOException;
  9.  
  10.     void restoreFromSource() throws IOException;
  11. }
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement