Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 619 Bytes

README.md

File metadata and controls

28 lines (19 loc) · 619 Bytes

ArcReactor

An all-purpose library for MCA.

Includes the following components:

  • Blocks (IDs, operations)
  • Items (IDs, operations)
  • Commands (command generators)
  • Control structures (branch based IF, WHILE, FOR, etc)
  • World (higher level world operations and abstractions)

Usage

Place the ArcReactor folder inside a mca_modules folder in your project root.

Include the entire library with:

import "ArcReactor";

Or include one part of the library with:

import "ArcReactor/<component name>";

where <component name> is blocks, items, commands, control, or world.