objd 0.4.7 copy "objd: ^0.4.7" to clipboard
objd: ^0.4.7 copied to clipboard

objd is an Object Oriented framework for Building Minecraft Datapacks with ease

example/example.dart

// import the core of the framework:

import 'package:objd/core.dart';
// import the custom pack:
import 'packs/example_pack.dart';

void main(List<String> args) {
  createProject(
    Project(
      name: 'folder name',
      version: 18,
      target: './', // path for where to generate the project
      generate: ExamplePack(), // The starting point of generation
    ),
    args,
  );
}
3
likes
120
pub points
39%
popularity

Publisher

verified publisherstevertus.com

objd is an Object Oriented framework for Building Minecraft Datapacks with ease

Homepage
Repository (GitHub)
View/report issues

Documentation

Documentation
API reference

License

BSD-2-Clause (LICENSE)

Dependencies

ansicolor, archive, deep_collection, gson

More

Packages that depend on objd