cobble-lang 0.6.3

A modern, Python-like language for creating Minecraft Data Packs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod build;
pub mod check;
pub mod doctor;
pub mod init;
pub mod inspect;
pub mod validate;
pub mod watch;

pub use build::build;
pub use check::check;
pub use doctor::{doctor, DoctorOptions};
pub use init::init;
pub use inspect::{inspect, InspectOptions};
pub use validate::validate;
pub use watch::watch;