Added Generation Output

This commit is contained in:
Samuele Lorefice
2025-01-22 02:23:29 +01:00
parent 83b207b799
commit fa78292a67
936 changed files with 31758 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public class bActionGroup {
public bActionGroup ptr_next;
public bActionGroup ptr_prev;
public ListBase channels;
public int fcurve_range_start;
public int fcurve_range_length;
public ActionChannelBag ptr_channel_bag;
public int flag;
public int customCol;
public char[] name = new System.Char[64];
public ThemeWireColor cs;
public bActionGroup(bActionGroup ptr_next, bActionGroup ptr_prev, ListBase channels, int fcurve_range_start, int fcurve_range_length, ActionChannelBag ptr_channel_bag, int flag, int customCol, char[] name, ThemeWireColor cs) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
this.channels = channels;
this.fcurve_range_start = fcurve_range_start;
this.fcurve_range_length = fcurve_range_length;
this.ptr_channel_bag = ptr_channel_bag;
this.flag = flag;
this.customCol = customCol;
this.name = name;
this.cs = cs;
}
}
}