-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathItemTemplates.cs
More file actions
32 lines (27 loc) · 875 Bytes
/
Copy pathItemTemplates.cs
File metadata and controls
32 lines (27 loc) · 875 Bytes
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
using System;
// Token: 0x0200005E RID: 94
public class ItemTemplates
{
// Token: 0x06000338 RID: 824 RVA: 0x00004F05 File Offset: 0x00003105
public static void add(ItemTemplate it)
{
ItemTemplates.itemTemplates.put(it.id, it);
}
// Token: 0x06000339 RID: 825 RVA: 0x00004F1D File Offset: 0x0000311D
public static ItemTemplate get(short id)
{
return (ItemTemplate)ItemTemplates.itemTemplates.get(id);
}
// Token: 0x0600033A RID: 826 RVA: 0x00004F34 File Offset: 0x00003134
public static short getPart(short itemTemplateID)
{
return ItemTemplates.get(itemTemplateID).part;
}
// Token: 0x0600033B RID: 827 RVA: 0x00004F41 File Offset: 0x00003141
public static short getIcon(short itemTemplateID)
{
return ItemTemplates.get(itemTemplateID).iconID;
}
// Token: 0x04000562 RID: 1378
public static MyHashTable itemTemplates = new MyHashTable();
}