Skip to content
Permalink
a8a92df83c
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
11 lines (11 sloc) 175 Bytes
class Piece{
//represents a game piece
char _token;
int _row;
int _col;
public Piece(char t, int r, int c) {
_token = t;
_row = r;
_col = c;
}
}