Receive and respond to friend requests and inventory offers

This commit is contained in:
Casper Warden
2017-12-19 19:59:06 +00:00
parent 6cbe790657
commit 70fd5a99ce
23 changed files with 382 additions and 11 deletions

View File

@@ -1,9 +1,10 @@
import { UUID } from './UUID';
import { ClientEvents } from './ClientEvents';
import { AssetType } from '../enums/AssetType';
export declare class Inventory {
main: {
skeleton: {
typeDefault: number;
typeDefault: AssetType;
version: number;
name: string;
folderID: UUID;
@@ -24,4 +25,5 @@ export declare class Inventory {
};
private clientEvents;
constructor(clientEvents: ClientEvents);
findFolderForType(type: AssetType): UUID;
}