Emveepee.Widgets.StackView.StackDetail.Store.Store C# (CSharp) Method

Store() public method

public Store ( ProfileData data, DisplayOptions options, List items ) : System
data Emveepee.Decoding.ProfileData
options DisplayOptions
items List
return System
                public Store(ProfileData data, DisplayOptions options, List<StackItem> items)
                    : base(data, options)
                {
                    nodes = new List<Node> ();
                    foreach (StackItem item in items)
                        nodes.Add (new StackNode (this, null, item));
                    nodes.Sort (Node.DescendingValue);
                    total = data.TotalStackCost;
                }
StackView.StackDetail.Store