movement sit/stand

This commit is contained in:
Wolfgang von Caron
2021-12-11 03:52:15 +00:00
committed by Casper Warden
parent 971e57a097
commit 050841b8f9
3 changed files with 69 additions and 0 deletions

View File

@@ -12,6 +12,7 @@ import { GroupCommands } from './commands/GroupCommands';
import { InventoryCommands } from './commands/InventoryCommands';
import { ParcelCommands } from './commands/ParcelCommands';
import { FriendCommands } from './commands/FriendCommands';
import { MovementCommands } from './commands/MovementCommands';
export class ClientCommands
{
@@ -26,6 +27,7 @@ export class ClientCommands
public agent: AgentCommands;
public group: GroupCommands;
public inventory: InventoryCommands;
public movement: MovementCommands;
constructor(region: Region, agent: Agent, bot: Bot)
{
@@ -40,6 +42,7 @@ export class ClientCommands
this.agent = new AgentCommands(region, agent, bot);
this.group = new GroupCommands(region, agent, bot);
this.inventory = new InventoryCommands(region, agent, bot);
this.movement = new MovementCommands(region, agent, bot);
}
shutdown(): void