11 lines
243 B
C#
11 lines
243 B
C#
|
using System.Runtime.InteropServices;
|
||
|
|
||
|
namespace Wonderking.Game.Data.Item;
|
||
|
|
||
|
[StructLayout(LayoutKind.Sequential)]
|
||
|
public struct ContainedItem
|
||
|
{
|
||
|
public short ID { get; internal set; }
|
||
|
public float ObtainChance { get; internal set; }
|
||
|
}
|