mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
* Adding Chess * Updating chess rankings * more rank updates * Reverting pieces to default size / improving movement
9 lines
126 B
C#
9 lines
126 B
C#
namespace ACE.Entity.Enum
|
|
{
|
|
public enum ChessColor
|
|
{
|
|
None = -1,
|
|
White = 0,
|
|
Black = 1,
|
|
}
|
|
}
|