Several small improvements + integrate options + first working draft of Cwda
[vchess.git] / client / src / variants / Pawnsking.js
index 76d03ef..27fc90f 100644 (file)
@@ -1,6 +1,11 @@
 import { ChessRules } from "@/base_rules";
 
 export class PawnskingRules extends ChessRules {
+
+  static get Options() {
+    return null;
+  }
+
   static get PawnSpecs() {
     return Object.assign(
       {},
@@ -53,4 +58,5 @@ export class PawnskingRules extends ChessRules {
   static get SEARCH_DEPTH() {
     return 4;
   }
+
 };