18 lines
205 B
C#
18 lines
205 B
C#
using System;
|
|
|
|
[Serializable]
|
|
public class tree_parameter_class
|
|
{
|
|
public int prototype;
|
|
|
|
public float density;
|
|
|
|
public float scale;
|
|
|
|
public tree_parameter_class()
|
|
{
|
|
density = 1f;
|
|
scale = 1f;
|
|
}
|
|
}
|