32 lines
857 B
C#
Raw Normal View History

2017-01-26 23:40:46 +03:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.ComponentModel;
namespace CsbBuilder.BuilderNodes
2017-01-26 23:40:46 +03:00
{
public class BuilderAisacNode : BuilderBaseNode
{
[Category("General"), DisplayName("Aisac Name")]
[Description("Representative name of this aisac.")]
2017-01-26 23:40:46 +03:00
public string AisacName { get; set; }
[Category("General")]
[Description("Type of this aisac. Values are unknown.")]
2017-01-26 23:40:46 +03:00
public byte Type { get; set; }
[Category("Graph")]
public List<BuilderAisacGraphNode> Graphs { get; set; }
[Category("Graph"), DisplayName("Random Range")]
2017-01-26 23:40:46 +03:00
public byte RandomRange { get; set; }
public BuilderAisacNode()
{
Graphs = new List<BuilderAisacGraphNode>();
}
}
}