Skip to content

Instantly share code, notes, and snippets.

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