Added Type stubbing
This commit is contained in:
@@ -14,11 +14,11 @@ using System;
|
||||
namespace BlendFile.DNA {
|
||||
|
||||
public struct NodeGeometrySampleIndex {
|
||||
public int8_t data_type;
|
||||
public int8_t domain;
|
||||
public int8_t clamp;
|
||||
public sbyte data_type;
|
||||
public sbyte domain;
|
||||
public sbyte clamp;
|
||||
public char[] _pad = new System.Char[1];
|
||||
public NodeGeometrySampleIndex(int8_t data_type, int8_t domain, int8_t clamp, char[] _pad) {
|
||||
public NodeGeometrySampleIndex(sbyte data_type, sbyte domain, sbyte clamp, char[] _pad) {
|
||||
this.data_type = data_type;
|
||||
this.domain = domain;
|
||||
this.clamp = clamp;
|
||||
|
||||
Reference in New Issue
Block a user