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

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

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

import com.nullpointergames.boardgames.chess.PieceType;

public class NullPiece extends Piece {

	private NullPiece() {
		super(PieceType.NULL, PieceColor.NULL);
	}

	public static Piece nullPiece() {
		return new NullPiece();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy