sparkletown/sparkle

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

Summary

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

import { MotionJoystickControlComponent } from "../components/MotionJoystickControlComponent";
import { MovementComponent } from "../components/MovementComponent";

export class MotionJoystickControlNode extends defineNode({
  joystick: MotionJoystickControlComponent,
  movement: MovementComponent,
}) {}