Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacques Lucke <jacques@blender.org>2021-02-11 15:44:58 +0300
committerJacques Lucke <jacques@blender.org>2021-02-11 15:44:58 +0300
commitdabf96f732d1ce5f44f53230317ff0d0b8a380df (patch)
treeaa01103cef473024ac86e76815e4c2d3138643c1 /source/blender/makesdna/DNA_meshdata_types.h
parent6ca992b017909064311bab436caad98bc863fa0c (diff)
Attributes: support bool attribute in rna
Differential Revision: https://developer.blender.org/D10387
Diffstat (limited to 'source/blender/makesdna/DNA_meshdata_types.h')
-rw-r--r--source/blender/makesdna/DNA_meshdata_types.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_meshdata_types.h b/source/blender/makesdna/DNA_meshdata_types.h
index f9af7a011e0..05be31262a6 100644
--- a/source/blender/makesdna/DNA_meshdata_types.h
+++ b/source/blender/makesdna/DNA_meshdata_types.h
@@ -271,6 +271,9 @@ typedef struct MIntProperty {
typedef struct MStringProperty {
char s[255], s_len;
} MStringProperty;
+typedef struct MBoolProperty {
+ uint8_t b;
+} MBoolProperty;
/** \} */