]> git.r.bdr.sh - rbdr/sumo/blobdiff - lib/config.js
Add Naive Game Rules (#11)
[rbdr/sumo] / lib / config.js
index 856fc1879193d592eb6c2ce710bf6c60ae67c867..c39fedf2ea2fb7478757135293586e3536e2d0db 100644 (file)
@@ -28,14 +28,22 @@ const config = {
    * @property {number} verticalResolution
    * @memberof Config
    */
    * @property {number} verticalResolution
    * @memberof Config
    */
-  verticalResolution: 224
+  verticalResolution: 224,
+
+  /**
+   * The points needed to win
+   *
+   * @property {number} maxPoints
+   * @memberof Config
+   */
+  maxPoints: 200
 
 };
 
 /**
 
 };
 
 /**
- * How many pixels to use per meter
+ * The horizontal resolution of the screen
  *
  *
- * @property {number} meterSize
+ * @property {number} horizontalResolution
  * @memberof Config
  */
 config.horizontalResolution = Math.round(config.verticalResolution * config.aspectRatio[0] / config.aspectRatio[1]);
  * @memberof Config
  */
 config.horizontalResolution = Math.round(config.verticalResolution * config.aspectRatio[0] / config.aspectRatio[1]);