2017-12-13 19:55:08 +00:00
|
|
|
import { Region } from './Region';
|
|
|
|
|
import { Agent } from './Agent';
|
|
|
|
|
import { Bot } from '../Bot';
|
|
|
|
|
import { NetworkCommands } from './commands/NetworkCommands';
|
|
|
|
|
import { AssetCommands } from './commands/AssetCommands';
|
|
|
|
|
import { TeleportCommands } from './commands/TeleportCommands';
|
|
|
|
|
import { RegionCommands } from './commands/RegionCommands';
|
|
|
|
|
import { GridCommands } from './commands/GridCommands';
|
|
|
|
|
import { CommunicationsCommands } from './commands/CommunicationsCommands';
|
|
|
|
|
import { AgentCommands } from './commands/AgentCommands';
|
|
|
|
|
import { GroupCommands } from './commands/GroupCommands';
|
2017-12-19 23:43:00 +00:00
|
|
|
import { InventoryCommands } from './commands/InventoryCommands';
|
2018-10-06 17:16:51 +01:00
|
|
|
import { ParcelCommands } from './commands/ParcelCommands';
|
2018-10-12 14:34:43 +01:00
|
|
|
import { FriendCommands } from './commands/FriendCommands';
|
2017-12-13 19:55:08 +00:00
|
|
|
export declare class ClientCommands {
|
|
|
|
|
network: NetworkCommands;
|
|
|
|
|
asset: AssetCommands;
|
|
|
|
|
teleport: TeleportCommands;
|
|
|
|
|
region: RegionCommands;
|
2018-10-06 17:16:51 +01:00
|
|
|
parcel: ParcelCommands;
|
2018-10-12 14:34:43 +01:00
|
|
|
friends: FriendCommands;
|
2017-12-13 19:55:08 +00:00
|
|
|
grid: GridCommands;
|
|
|
|
|
comms: CommunicationsCommands;
|
|
|
|
|
agent: AgentCommands;
|
|
|
|
|
group: GroupCommands;
|
2017-12-19 23:43:00 +00:00
|
|
|
inventory: InventoryCommands;
|
2017-12-13 19:55:08 +00:00
|
|
|
constructor(region: Region, agent: Agent, bot: Bot);
|
2018-10-09 20:03:28 +01:00
|
|
|
shutdown(): void;
|
2017-12-13 19:55:08 +00:00
|
|
|
}
|