mirror of
https://github.com/TriM-Organization/Musicreater.git
synced 2025-06-05 03:45:23 +00:00
31 lines
854 B
Python
31 lines
854 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
用以生成单个mcstructure文件的附加功能
|
|
|
|
版权所有 © 2024 金羿 & 诸葛亮与八卦阵
|
|
Copyright © 2025 Eilles & bgArray
|
|
|
|
开源相关声明请见 仓库根目录下的 License.md
|
|
Terms & Conditions: License.md in the root directory
|
|
"""
|
|
|
|
# 睿乐组织 开发交流群 861684859
|
|
# Email TriM-Organization@hotmail.com
|
|
# 若需转载或借鉴 许可声明请查看仓库目录下的 License.md
|
|
|
|
|
|
__all__ = [
|
|
"to_mcstructure_file_in_delay",
|
|
"to_mcstructure_file_in_repeater",
|
|
"to_mcstructure_file_in_score",
|
|
"to_mcstructure_files_in_repeater_divided_by_instruments",
|
|
]
|
|
__author__ = (("金羿", "Eilles"),)
|
|
|
|
from .main import (
|
|
to_mcstructure_file_in_delay,
|
|
to_mcstructure_file_in_repeater,
|
|
to_mcstructure_file_in_score,
|
|
to_mcstructure_files_in_repeater_divided_by_instruments,
|
|
)
|