source: binary-improvements/7dtd-server-fixes/src/PersistentData/InvItem.cs@ 260

Last change on this file since 260 was 253, checked in by alloc, 9 years ago

Fixes 6_8_10

File size: 439 bytes
RevLine 
[253]1using System;
2using System.Runtime.Serialization;
3
4namespace 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.