Line | |
---|
1 | using System;
|
---|
2 | using System.Runtime.Serialization;
|
---|
3 |
|
---|
4 | namespace AllocsFixes.PersistentData
|
---|
5 | {
|
---|
6 | [Serializable]
|
---|
7 | public class InvItem {
|
---|
8 | public string itemName;
|
---|
9 | public int count;
|
---|
10 | public int quality;
|
---|
11 | public InvItem[] parts;
|
---|
12 | public string icon = "";
|
---|
13 | public string iconcolor = "";
|
---|
14 |
|
---|
15 | public InvItem (string itemName, int count, int quality = -1) {
|
---|
16 | this.itemName = itemName;
|
---|
17 | this.count = count;
|
---|
18 | this.quality = quality;
|
---|
19 | }
|
---|
20 | }
|
---|
21 | }
|
---|
22 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.