19 lines
353 B
C#
19 lines
353 B
C#
namespace Mapbox.Editor
|
|
{
|
|
using System;
|
|
using UnityEngine;
|
|
using Random = UnityEngine.Random;
|
|
[Serializable]
|
|
public class FeatureTreeElement : TreeElement
|
|
{
|
|
public string Name;
|
|
public string Type;
|
|
public bool isActive;
|
|
|
|
public FeatureTreeElement(string name, int depth, int id) : base(name, depth, id)
|
|
{
|
|
isActive = true;
|
|
}
|
|
}
|
|
}
|