An enum declaring chess variant identifiers used by the LichessNET project. It lists named variants like Standard, Chess960, Crazyhouse and others for use in game logic or API models.
#nullable enable annotations
namespace LichessNET.Entities.Enumerations;
public enum ChessVariant
{ Standard, Chess960, KingOfTheHill, ThreeCheck, Antichess, Atomic, Horde, RacingKings, Crazyhouse, Storm, Racer, Streak
}