objd 0.3.3-beta.2 objd: ^0.3.3-beta.2 copied to clipboard
objd is an Object Oriented framework for Building Minecraft Datapacks with ease
// import the core of the framework:
import 'package:objd/core.dart';
// import the custom pack:
import './packs/examplePack.dart';
void main(List<String> args) {
createProject(
Project(
name: 'folder name',
target: './', // path for where to generate the project
generate: ExamplePack(), // The starting point of generation
),
args,
);
}