sparkletown/sparkle

View on GitHub
src/components/templates/AnimateMap/game/map/nodes/MotionBotIdleNode.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { defineNode } from "@ash.ts/ash";

import { BotComponent } from "../components/BotComponent";
import { MotionBotIdleComponent } from "../components/MotionBotIdleComponent";

export class MotionBotIdleNode extends defineNode({
  bot: BotComponent,
  idle: MotionBotIdleComponent,
}) {}