All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.nullpointergames.boardgames.Position Maven / Gradle / Ivy

There is a newer version: 0.1.17
Show newest version
package com.nullpointergames.boardgames;

public class Position {

	private final char col;
	private final int row;

	public Position(char col, int row) {
		this.col = col;
		this.row = row;
	}
	
	public char col() {
		return col;
	}
	
	public int row() {
		return row;
	}
	
	@Override
	public boolean equals(Object obj) {
		Position anotherPosition = (Position) obj;
		return anotherPosition.col == col && anotherPosition.row == row;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy