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

outdated

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

example/example.dart

import 'package:objd/core.dart';

void main() {
  createProject(
    Project(
      name: "folder name",
      target: "./",             // path for where to generate the project
      generate: ExamplePack(),  // The starting point of generation
    ),
  );
}

class ExamplePack extends Widget {
  @override
  Widget generate(Context context) {
    return Pack(
      name: "mypack",
      main: File(
        path: 'main',
        child: For.of([
          
        ])
      ),
      load: File(
        path: 'load',
        child: For.of([

        ])
      ),
      files: [
        
      ]
    );
  }
}
3
likes
0
pub points
40%
popularity

Publisher

verified publisherstevertus.com

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

Homepage
Repository (GitHub)
View/report issues

Documentation

Documentation

License

unknown (LICENSE)

Dependencies

colorize, meta, path, watcher

More

Packages that depend on objd