TurboSchach/ChessPieces/ChessPieceColor.hpp
2025-01-05 19:10:52 +01:00

10 lines
112 B
C++

#ifndef ChessPieceColor_H
#define ChessPieceColor_H
enum ChessPieceColor {
Black = 0,
White = 1
};
#endif