NMV 0.8.0 - Big refactor and linting fixes

This commit is contained in:
Casper Warden
2025-01-17 23:37:54 +00:00
parent 3870861b0a
commit 53659008ac
210 changed files with 17588 additions and 18300 deletions

View File

@@ -1,6 +1,6 @@
import { Region } from './Region';
import { Agent } from './Agent';
import { Bot } from '../Bot';
import type { Region } from './Region';
import type { Agent } from './Agent';
import type { Bot } from '../Bot';
import { NetworkCommands } from './commands/NetworkCommands';
import { AssetCommands } from './commands/AssetCommands';
import { TeleportCommands } from './commands/TeleportCommands';
@@ -29,7 +29,7 @@ export class ClientCommands
public inventory: InventoryCommands;
public movement: MovementCommands;
constructor(region: Region, agent: Agent, bot: Bot)
public constructor(region: Region, agent: Agent, bot: Bot)
{
this.network = new NetworkCommands(region, agent, bot);
this.asset = new AssetCommands(region, agent, bot);
@@ -45,7 +45,7 @@ export class ClientCommands
this.movement = new MovementCommands(region, agent, bot);
}
shutdown(): void
public shutdown(): void
{
this.network.shutdown();
this.asset.shutdown();