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

com.fluxchess.pulse.Rank Maven / Gradle / Ivy

/*
 * Copyright (C) 2013-2019 Phokham Nonava
 *
 * Use of this source code is governed by the MIT license that can be
 * found in the LICENSE file.
 */
package com.fluxchess.pulse;

final class Rank {

	static final int r1 = 0;
	static final int r2 = 1;
	static final int r3 = 2;
	static final int r4 = 3;
	static final int r5 = 4;
	static final int r6 = 5;
	static final int r7 = 6;
	static final int r8 = 7;

	static final int NORANK = 8;

	static final int[] values = {
			r1, r2, r3, r4, r5, r6, r7, r8
	};

	private Rank() {
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy