mirror of
https://github.com/misode/misode.github.io.git
synced 2026-04-29 01:22:44 +00:00
* Start obsidian item generator * Add part of block generator * More progress on blocks and items for Obsidian * Fixed some issues * Added even more properties for blocks * fixed this? * added back these? * Hopefully fixed this? * More events * should fix the issues * NOW WORK * adding support for even more * Fix build * Rename obsidian IDs * updated pack version * Update config --------- Co-authored-by: Misode <Misoloo64@gmail.com>
11 lines
402 B
TypeScript
11 lines
402 B
TypeScript
import type { CollectionRegistry, SchemaRegistry } from '@mcschema/core'
|
|
import { initImmersiveWeathering } from './ImmersiveWeathering.js'
|
|
import { initObsidian } from './Obsidian.js'
|
|
|
|
export * from './ImmersiveWeathering.js'
|
|
|
|
export function initPartners(schemas: SchemaRegistry, collections: CollectionRegistry) {
|
|
initImmersiveWeathering(schemas, collections)
|
|
initObsidian(schemas, collections)
|
|
}
|