/* SPDX-FileCopyrightText: 2023 Blender Authors * * SPDX-License-Identifier: GPL-2.0-or-later */ /** \file * \ingroup collada */ #pragma once #include #include "ExportSettings.h" #include "ImportSettings.h" #include "RNA_types.hh" struct bContext; /* * both return 1 on success, 0 on error */ int collada_import(struct bContext *C, ImportSettings *import_settings); int collada_export(struct bContext *C, ExportSettings *export_settings);