source:
binary-improvements/7dtd-server-fixes/src/PersistentData/InvItem.cs@
165
| Last change on this file since 165 was 145, checked in by , 11 years ago | |
|---|---|
| File size: 290 bytes | |
| Rev | Line | |
|---|---|---|
| [144] | 1 | using System; |
| 2 | using System.Runtime.Serialization; | |
| 3 | ||
| 4 | namespace 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 | { | |
| [145] | 14 | this.itemName = itemName; |
| 15 | this.count = count; | |
| [144] | 16 | } |
| 17 | } | |
| 18 | } | |
| 19 |
Note:
See TracBrowser
for help on using the repository browser.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)