Added Type stubbing
This commit is contained in:
@@ -15,13 +15,13 @@ namespace BlendFile.DNA {
|
||||
|
||||
public class ActionSlot {
|
||||
public char[] name = new System.Char[66];
|
||||
public uchar[] _pad0 = new uchar[2];
|
||||
public byte[] _pad0 = new System.Byte[2];
|
||||
public int idtype;
|
||||
public int handle;
|
||||
public int8_t slot_flags;
|
||||
public uchar[] _pad1 = new uchar[3];
|
||||
public sbyte slot_flags;
|
||||
public byte[] _pad1 = new System.Byte[3];
|
||||
public ActionSlotRuntimeHandle ptr_runtime;
|
||||
public ActionSlot(char[] name, uchar[] _pad0, int idtype, int handle, int8_t slot_flags, uchar[] _pad1, ActionSlotRuntimeHandle ptr_runtime) {
|
||||
public ActionSlot(char[] name, byte[] _pad0, int idtype, int handle, sbyte slot_flags, byte[] _pad1, ActionSlotRuntimeHandle ptr_runtime) {
|
||||
this.name = name;
|
||||
this._pad0 = _pad0;
|
||||
this.idtype = idtype;
|
||||
|
||||
Reference in New Issue
Block a user