feat: animation system

This commit is contained in:
Asaki Yuki 2026-01-26 13:27:54 +07:00
parent 406e71575f
commit 7534a613cb
22 changed files with 19733 additions and 19122 deletions

View file

@ -1,5 +1,9 @@
import { Memory } from "./Memory.js"
process.on("beforeExit", () => {
// console.log(Memory.build())
})
const isBuildMode = process.argv.includes("--build")
if (isBuildMode) {
process.on("beforeExit", () => {
console.log(JSON.stringify(Memory.build(), null, 2))
})
}