You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
This represents UE4/Main @18073326, Release-5.0 @18081140 and Dev-PerfTest @18045971 [CL 18081471 by aurel cordonnier in ue5-release-engine-test branch]
39 lines
924 B
C#
39 lines
924 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace CruncherSharp
|
|
{
|
|
public partial class SelectNamespace : Form
|
|
{
|
|
public SelectNamespace()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public void SetName(String className)
|
|
{
|
|
Name = "Select namespace for " + className;
|
|
}
|
|
|
|
public string GetNamespace()
|
|
{
|
|
if (checkedListBoxNamespaces.CheckedItems.Count == 0)
|
|
return "";
|
|
return checkedListBoxNamespaces.CheckedItems[0].ToString();
|
|
}
|
|
|
|
public void AddNamespaces(List<String> namespaces)
|
|
{
|
|
foreach (var name in namespaces)
|
|
checkedListBoxNamespaces.Items.Add(name);
|
|
}
|
|
}
|
|
}
|