Added Type stubbing

This commit is contained in:
Samuele Lorefice
2025-01-22 17:56:49 +01:00
parent 2d6159e331
commit 9a949dbeab
112 changed files with 610 additions and 313 deletions

View File

@@ -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;