Skip to content
This repository has been archived by the owner on Dec 5, 2024. It is now read-only.

0.3.0

Compare
Choose a tag to compare
@Nixinova Nixinova released this 04 Jul 04:57
· 6 commits to main since this release
7da2234

Version 0.3 of FenFurnace with some breaking changes (PR: #12)

Changelog:

  • Move global variables to imported object gameData.
    - global.moveList
    + import {gameData} from "fenfurnace"
    + gameData.moveList
  • Move function validation.makeMove() to makeMove().
    - import {validation} from "fenfurnace"
    - validation.makeMove()
    + import {makeMove} from "fenfurnace"
    + makeMove()