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

Last change on this file since 144 was 144, checked in by alloc, 11 years ago

Fixes

File size: 238 bytes
Line 
1using System;
2using System.Runtime.Serialization;
3
4namespace AllocsFixes.PersistentData
5{
6 [Serializable]
7 public class InvItem
8 {
9 public string itemName;
10 public int count;
11
12 public InvItem (string itemName, int count)
13 {
14 }
15 }
16}
17
Note: See TracBrowser for help on using the repository browser.