blob: a449d21f564ff7042116534ba78a4cce4b289f75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { Component, ComponentNames, Sprite } from ".";
import { type Direction } from "../interfaces";
export class FacingDirection extends Component {
public readonly directionSprites: Map<Direction, Sprite>;
constructor() {
super(ComponentNames.FacingDirection);
this.directionSprites = new Map<Direction, Sprite>();
}
}
|