import Kaplay from "kaplay";

export const k = () => {
  const canvas = document.getElementById("game-canvas") as HTMLCanvasElement;
  return new Kaplay.Game({
    canvas,
    width: canvas.width,
    height: canvas.height,
    background: "#eee",
    // Add more Kaplay settings here
  });
};
