From d87bb9bc0991d7ce4eeb895da61c63a204edaa4d Mon Sep 17 00:00:00 2001 From: Terry Truong Date: Sat, 30 Apr 2022 13:24:26 +1000 Subject: Add scripts for downloading/reviewing/cropping_and_resizing images Also adjust client code to handle new format, and add backend/data/README.md explaining image production process. --- src/tol.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/tol.ts') diff --git a/src/tol.ts b/src/tol.ts index daa3339..bfc778f 100644 --- a/src/tol.ts +++ b/src/tol.ts @@ -10,10 +10,12 @@ export class TolNode { parent: string | null; tips: number; pSupport: boolean; + imgFile: string | null; constructor(children: string[] = [], parent = null, tips = 0, pSupport = false){ this.children = children; this.parent = parent; this.tips = tips; this.pSupport = pSupport; + this.imgFile = null; } } -- cgit v1.2.3