Almost added TitanChess + EvolutionChess
[vchess.git] / client / src / variants / Checkered1.js
index fd0d68d..71f9b92 100644 (file)
@@ -1,6 +1,7 @@
 import { ChessRules, Move, PiPo } from "@/base_rules";
 
 export class Checkered1Rules extends ChessRules {
+
   static board2fen(b) {
     const checkered_codes = {
       p: "s",
@@ -678,4 +679,5 @@ export class Checkered1Rules extends ChessRules {
       notation += "=" + move.appear[0].p.toUpperCase();
     return notation;
   }
+
 };