File size: 308 Bytes
52a4f3c
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
"""
Chess game logic and analysis module.

Provides complete chess functionality for the Metropolis Chess Club.
"""

from chess_engine.game import ChessGame
from chess_engine.analysis import PositionAnalysis
from chess_engine.ai import choose_move

__all__ = ["ChessGame", "PositionAnalysis", "choose_move"]