This repository has been archived on 2023-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
ScriptCraft/scriptcraft/src/main/ts/src/minecraft/index.ts

20 lines
686 B
TypeScript
Raw Normal View History

2020-04-27 20:22:28 +00:00
/**
* API Entry-Point
2020-04-28 14:16:47 +00:00
*
2020-04-27 20:22:28 +00:00
* Import With:
* ```typescript
* import { ... } from 'minecraft';
* ```
* @packageDocumentation
*/
2020-04-25 13:33:17 +00:00
export { Identifier, ActionResult, Hand, Pos, Direction, DirectionUtil } from './core';
2020-04-28 20:18:22 +00:00
export { CustomBlock, CustomBlockEntity, CustomBlockWithEntity, BlockSettings, BlockState, BlockEntity } from './block';
2020-05-05 00:36:32 +00:00
export { ItemStack, ItemSettings, CustomItem, BlockItem, ItemRarity } from './item';
2020-04-25 13:33:17 +00:00
export { World } from './world';
export { LivingEntity, PlayerEntity } from './entity';
2020-04-27 18:01:23 +00:00
export { CompoundTag, ListTag, NumberType } from './tag';
2020-04-28 02:30:12 +00:00
export { Registry } from './registry';
2020-04-28 20:18:22 +00:00
export { Inventory } from './inventory';
2020-05-05 00:36:32 +00:00
export { Events } from './event';