12 lines
124 B
C#
12 lines
124 B
C#
|
using System;
|
||
|
|
||
|
namespace RoR2;
|
||
|
|
||
|
[Serializable]
|
||
|
public struct ItemCountPair
|
||
|
{
|
||
|
public ItemDef itemDef;
|
||
|
|
||
|
public int count;
|
||
|
}
|