Added Type stubbing
This commit is contained in:
@@ -14,10 +14,10 @@ using System;
|
||||
namespace BlendFile.DNA {
|
||||
|
||||
public struct BoneColor {
|
||||
public int8_t palette_index;
|
||||
public uchar[] _pad0 = new uchar[7];
|
||||
public sbyte palette_index;
|
||||
public byte[] _pad0 = new System.Byte[7];
|
||||
public ThemeWireColor custom;
|
||||
public BoneColor(int8_t palette_index, uchar[] _pad0, ThemeWireColor custom) {
|
||||
public BoneColor(sbyte palette_index, byte[] _pad0, ThemeWireColor custom) {
|
||||
this.palette_index = palette_index;
|
||||
this._pad0 = _pad0;
|
||||
this.custom = custom;
|
||||
|
||||
Reference in New Issue
Block a user