index : btroops | |
Virtual board game-aid for BattleTroops, an infantry combat simulator wargame published by FASA in 1989. |
aboutsummaryrefslogtreecommitdiff |
diff options
Diffstat (limited to 'src/modules/game.js')
-rw-r--r-- | src/modules/game.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/game.js b/src/modules/game.js index f9ce991..c22dc9d 100644 --- a/src/modules/game.js +++ b/src/modules/game.js @@ -1,6 +1,6 @@ -import FiringArc from './firingArc.js'; -import SightLine from './sightLine.js'; -import Counter from './counter.js'; +import firingArc from './game/firingArc.js'; +import SightLine from './game/sightLine.js'; +import Counter from './game/counter.js'; const svgns = "http://www.w3.org/2000/svg"; @@ -10,7 +10,7 @@ export default class Game { constructor(svg) { this.svg = svg; - this.firingArc = new FiringArc(svg); + this.firingArc = new firingArc(svg); this.sightLine = new SightLine(svg); this.counter = new Counter(svg); |