mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-06-17 11:02:26 +00:00
15 lines
358 B
C#
15 lines
358 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace PckStudio
|
|
{
|
|
public partial class MetaList : MetroFramework.Forms.MetroForm
|
|
{
|
|
public MetaList(List<string> metaTags)
|
|
{
|
|
InitializeComponent();
|
|
MetaTreeView.Nodes.Clear();
|
|
metaTags.ForEach(s => MetaTreeView.Nodes.Add(s));
|
|
}
|
|
}
|
|
} |