sparkletown/sparkle

View on GitHub
src/components/templates/AnimateMap/game/utils/Point.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { Point } from "types/utility";

export const StartPoint = (): Point => {
  return { x: 4500, y: 4600 };
};
export const ZeroPoint = (): Point => {
  return { x: 0, y: 0 };
};