31 lines
911 B
C#
31 lines
911 B
C#
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// This code was generated by a tool.
|
|
//
|
|
// Changes to this file may cause incorrect behavior and will be lost if
|
|
// the code is regenerated.
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
using BlendFile.CompatTypes;
|
|
using System;
|
|
|
|
|
|
namespace BlendFile.DNA {
|
|
|
|
public class BoidRule {
|
|
public BoidRule ptr_next;
|
|
public BoidRule ptr_prev;
|
|
public int type;
|
|
public int flag;
|
|
public char[] name = new System.Char[32];
|
|
public BoidRule(BoidRule ptr_next, BoidRule ptr_prev, int type, int flag, char[] name) {
|
|
this.ptr_next = ptr_next;
|
|
this.ptr_prev = ptr_prev;
|
|
this.type = type;
|
|
this.flag = flag;
|
|
this.name = name;
|
|
}
|
|
}
|
|
}
|