blackbirdchess-service-results/src/Enums/Color.php
Jeroen De Meerleer bbe6975670
Initial Commit
This commit:
- Creates the repository
- Forks libpairtwo
- Removes the unrelated files
- Moves the namespaces to a new namespace
- Uses native 8.1 enums instead of a thirdparty-library
2023-01-12 19:18:00 +01:00

23 lines
437 B
PHP

<?php
namespace Blackbirdchess\Service\Results\Enums;
/**
* Enum Color
*
* List of all compatible colors
*
* @author Jeroen De Meerleer <schaak@jeroened.be>
* @category Main
* @package Blackbird Chess
* @copyright Copyright (c) 2018-2019 Jeroen De Meerleer <schaak@jeroened.be>
* @copyright Copyright (c) 2023- Blackbird Chess
*/
Enum Color: string
{
case BLACK = 'B';
case NONE = '*';
case WHITE = 'W';
}