add custom hotbar

This commit is contained in:
Reid 2023-08-11 17:38:07 -07:00
parent 72029047a5
commit 8232eacff2
12 changed files with 304 additions and 8 deletions

View file

@ -13,6 +13,7 @@ export class clientState {
character: CharacterRigR6,
debugEnabled: boolean,
isRunning: boolean,
backpack: Backpack,
// lastProcessedCommand: Inputkind,
logger: Logger
@ -21,6 +22,7 @@ export class clientState {
this.player = player
this.debugEnabled = debugEnabled
this.isRunning = isRunning
this.backpack = backpack
// this.lastProcessedCommand = lastProcessedCommand
this.logger = logger
@ -30,6 +32,7 @@ export class clientState {
character: CharacterRigR6
debugEnabled: boolean
isRunning: boolean
backpack: Backpack
lastProcessedCommand?: InputKind
logger: Logger