Several small improvements + integrate options + first working draft of Cwda
[vchess.git] / client / src / variants / Knightpawns.js
index 9647653..bf3e773 100644 (file)
@@ -1,6 +1,11 @@
 import { ChessRules } from "@/base_rules";
 
 export class KnightpawnsRules extends ChessRules {
+
+  static get Options() {
+    return null;
+  }
+
   static get PawnSpecs() {
     return Object.assign(
       {},
@@ -48,4 +53,5 @@ export class KnightpawnsRules extends ChessRules {
 
   postPlay() {}
   postUndo() {}
+
 };