sparkletown/sparkle

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

Summary

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

import { KeyboardComponent } from "../components/KeyboardComponent";
import { MotionKeyboardControlComponent } from "../components/MotionKeyboardControlComponent";

export class KeyboardNode extends defineNode({
  keyboard: KeyboardComponent,
  control: MotionKeyboardControlComponent,
}) {}