forked from WiredSpast/G-Node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
21 lines (18 loc) · 1.15 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Base
import { HPacket } from "./lib/protocol/hpacket";
import { HDirection } from "./lib/protocol/hdirection";
import { HMessage } from "./lib/protocol/hmessage";
import { Extension } from "./lib/extension/extension";
import { HClient } from "./lib/protocol/hclient";
export { HPacket, HDirection, HMessage, Extension, HClient };
// Parsers
import { HFloorItem, HStuff } from "./lib/extension/parsers/hflooritem";
import { HWallItem } from "./lib/extension/parsers/hwallitem";
import { HInventoryItem, HFurniType } from "./lib/extension/parsers/hinventoryitem";
import { HEntity, HEntityUpdate, HEntityType, HStance, HGender, HSign, HAction } from "./lib/extension/parsers/hentity";
import { HGroup } from "./lib/extension/parsers/hgroup";
import { HPoint } from "./lib/extension/parsers/hpoint";
import { HFacing } from "./lib/extension/parsers/hfacing";
import { HUserProfile } from "./lib/extension/parsers/huserprofile";
import { HFriend } from "./lib/extension/parsers/hfriend";
export { HFloorItem, HStuff, HWallItem, HInventoryItem, HFurniType, HEntity, HEntityUpdate, HEntityType, HStance, HGender, HSign, HAction, HGroup, HPoint, HFacing, HUserProfile, HFriend };