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/src/main/js/src/minecraft/index.ts

18 lines
587 B
TypeScript
Raw Normal View History

2020-04-27 20:22:28 +00:00
/**
* API Entry-Point
*
* 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-26 17:23:16 +00:00
export { CustomBlock, CustomBlockEntity, CustomBlockWithEntity, BlockSettings, BlockState } from './block';
2020-04-25 13:33:17 +00:00
export { ItemStack, ItemSettings, CustomItem, BlockItem } from './item';
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';