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,14 +14,14 @@ using System;
namespace BlendFile.DNA {
public struct ActionStrip {
public int8_t strip_type;
public uchar[] _pad0 = new uchar[3];
public sbyte strip_type;
public byte[] _pad0 = new System.Byte[3];
public int data_index;
public float frame_start;
public float frame_end;
public float frame_offset;
public uchar[] _pad1 = new uchar[4];
public ActionStrip(int8_t strip_type, uchar[] _pad0, int data_index, float frame_start, float frame_end, float frame_offset, uchar[] _pad1) {
public byte[] _pad1 = new System.Byte[4];
public ActionStrip(sbyte strip_type, byte[] _pad0, int data_index, float frame_start, float frame_end, float frame_offset, byte[] _pad1) {
this.strip_type = strip_type;
this._pad0 = _pad0;
this.data_index = data_index;