11 lines
191 B
C#
11 lines
191 B
C#
|
using System.Runtime.InteropServices;
|
||
|
|
||
|
namespace Wonderking.Game.Data.Item;
|
||
|
|
||
|
[StructLayout(LayoutKind.Sequential)]
|
||
|
public struct CraftMaterial
|
||
|
{
|
||
|
public uint ID;
|
||
|
public uint Amount;
|
||
|
}
|