From e86bc5f7463e44c5e209596ce4c146bd6497573b Mon Sep 17 00:00:00 2001 From: Thilo Behnke Date: Sat, 16 Apr 2022 23:56:38 +0200 Subject: [PATCH] cleanup --- www/index.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/www/index.js b/www/index.js index a2815bd..54be59f 100644 --- a/www/index.js +++ b/www/index.js @@ -2,12 +2,7 @@ import * as wasm from "wasm-app"; import { Field, GameObject } from "wasm-app"; import { memory } from "wasm-app/rust_wasm_bg"; -// ... - -const CELL_SIZE = 5; // px const GRID_COLOR = "#CCCCCC"; -const DEAD_COLOR = "#FFFFFF"; -const ALIVE_COLOR = "#000000"; const field = Field.new(); const width = field.width;