forked from whoward69/Sims2Tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRepositoryWizardData.cs
59 lines (52 loc) · 2.51 KB
/
RepositoryWizardData.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
* Repository Wizard - a utility for repositorying clothes/objects to another item (also known as master/slave technique)
* - see http://www.picknmixmods.com/Sims2/Notes/RepositoryWizard/RepositoryWizard.html
*
* Sims2Tools - a toolkit for manipulating The Sims 2 DBPF files
*
* William Howard - 2020-2024
*
* Permission granted to use this code in any way, except to claim it as your own or sell it
*/
using System.Data;
namespace RepositoryWizard
{
[System.ComponentModel.DesignerCategory("")]
class RepositoryWizardPackageData : DataTable
{
public RepositoryWizardPackageData()
{
// Must match the order in the DataGridView control
this.Columns.Add(new DataColumn("Name", typeof(string)));
this.Columns.Add(new DataColumn("PackagePath", typeof(string)));
this.Columns.Add(new DataColumn("PackageIcon", typeof(object)));
}
}
[System.ComponentModel.DesignerCategory("")]
class RepositoryWizardResourceData : DataTable
{
public RepositoryWizardResourceData()
{
// Must match the order in the DataGridView control
this.Columns.Add(new DataColumn("Visible", typeof(string)));
this.Columns.Add(new DataColumn("Type", typeof(string)));
this.Columns.Add(new DataColumn("Id", typeof(string)));
this.Columns.Add(new DataColumn("Title", typeof(string)));
this.Columns.Add(new DataColumn("Filename", typeof(string)));
this.Columns.Add(new DataColumn("Gender", typeof(string)));
this.Columns.Add(new DataColumn("Age", typeof(string)));
this.Columns.Add(new DataColumn("Category", typeof(string)));
this.Columns.Add(new DataColumn("Product", typeof(string)));
this.Columns.Add(new DataColumn("Shoe", typeof(string)));
this.Columns.Add(new DataColumn("Sort", typeof(uint)));
this.Columns.Add(new DataColumn("Model", typeof(string)));
this.Columns.Add(new DataColumn("ShpeSubsets", typeof(string)));
this.Columns.Add(new DataColumn("GmdcSubsets", typeof(string)));
this.Columns.Add(new DataColumn("DesignMode", typeof(string)));
this.Columns.Add(new DataColumn("MaterialsMesh", typeof(string)));
this.Columns.Add(new DataColumn("Tooltip", typeof(string)));
this.Columns.Add(new DataColumn("repoWizardData", typeof(object)));
this.DefaultView.RowFilter = "Visible = 'Yes'";
}
}
}