Added Type stubbing
This commit is contained in:
@@ -14,9 +14,9 @@ using System;
|
||||
namespace BlendFile.DNA {
|
||||
|
||||
public struct NodeAccumulateField {
|
||||
public uchar data_type;
|
||||
public uchar domain;
|
||||
public NodeAccumulateField(uchar data_type, uchar domain) {
|
||||
public byte data_type;
|
||||
public byte domain;
|
||||
public NodeAccumulateField(byte data_type, byte domain) {
|
||||
this.data_type = data_type;
|
||||
this.domain = domain;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user