Implement Mob Sheet

This commit is contained in:
Oliver-Akins 2024-01-28 16:00:14 -07:00
parent c257e4e5ee
commit 028b8629fe
10 changed files with 202 additions and 1 deletions

View file

@ -1,9 +1,11 @@
import PlayerActor from "./Player.mjs";
import MobActor from "./Mob.mjs";
/** @extends {Actor} */
export class ActorHandler extends Actor {
proxyTargets = {
player: PlayerActor,
mob: MobActor,
};
constructor(data, ctx) {

View file