Skip to content

Instantly share code, notes, and snippets.

@sixhat
Created May 14, 2018 08:53
Show Gist options
  • Save sixhat/31974606a8c3203eb402a7d06cdc98c0 to your computer and use it in GitHub Desktop.
Save sixhat/31974606a8c3203eb402a7d06cdc98c0 to your computer and use it in GitHub Desktop.
import java.rmi.Remote;
import java.rmi.RemoteException;
public interface Board extends Remote {
public int[] play(int pos, String nome) throws RemoteException;
public int[] getBoard(String nome) throws RemoteException;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment