Added Type stubbing
This commit is contained in:
@@ -14,9 +14,9 @@ using System;
|
||||
namespace BlendFile.DNA {
|
||||
|
||||
public struct NodeGeometryImageTexture {
|
||||
public int8_t interpolation;
|
||||
public int8_t extension;
|
||||
public NodeGeometryImageTexture(int8_t interpolation, int8_t extension) {
|
||||
public sbyte interpolation;
|
||||
public sbyte extension;
|
||||
public NodeGeometryImageTexture(sbyte interpolation, sbyte extension) {
|
||||
this.interpolation = interpolation;
|
||||
this.extension = extension;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user