The core functionality of Apate. It is not exported from the index as "Core". See below how to use members.
Example
import { Vec, Tile, ... } from "<path to engine>/index.js";
// create a vec for storing a color and a tile with this color
const color = Vec.fromHex(0xff0000ff);
const tile = Tile.fromColor(color);