make it buildable to db system #2

Merged
Hare merged 5 commits from develop into master 2024-08-28 00:15:50 +09:00
Showing only changes of commit e7949b6c5f - Show all commits

View File

@ -3,14 +3,14 @@
let cursor: HTMLDivElement;
type position = {
type pos = {
x: number;
y: number;
};
let disabled = false;
let rawPosition: position = { x: 0, y: -100 };
let position: position = { x: 0, y: 0 };
let rawPosition: pos = { x: 0, y: -100 };
let position: pos = { x: 0, y: 0 };
onMount(() => {
window.addEventListener('mousemove', (e) => {