You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
353 B
18 lines
353 B
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;
|
|
}
|
|
}
|
|
}
|
|
|