// core/game-platform.js
class GamePlatform {
constructor() {
this.games = {
chess: new ChessEngine(),
checkers: new CheckersEngine(),
backgammon: new BackgammonEngine()
};
this.auth = new AuthService();
this.network = new NetworkManager();
this.graphics = new GraphicsEngine();
this.ai = new AIManager();