WIP: Brush assets project #106303

Draft
Julian Eisel wants to merge 358 commits from brush-assets-project into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
2 changed files with 4 additions and 2 deletions
Showing only changes of commit 2120714afe - Show all commits

View File

@ -23,6 +23,8 @@
* of IDs in a given Main data-base.
*/
#include "DNA_ID_enums.h"
#include <optional>
struct BlendFileReadReport;
@ -89,7 +91,7 @@ bool BKE_lib_override_library_is_system_defined(const Main *bmain, const ID *id)
* \param r_reports: If not NULL, add one report for each relevant ID.
*/
int BKE_lib_override_user_edited_from_library_count(Main *bmain,
const short id_type,
ID_Type id_type,
Library *library,
ReportList *r_reports);

View File

@ -340,7 +340,7 @@ bool BKE_lib_override_library_is_system_defined(const Main *bmain, const ID *id)
}
int BKE_lib_override_user_edited_from_library_count(Main *bmain,
const short id_type,
const ID_Type id_type,
Library *library,
ReportList *r_reports)
{