Timothy Schenk
9f3007b10e
All checks were successful
Build, Package and Push Images / preprocess (push) Successful in 2s
Build, Package and Push Images / build (push) Successful in 25s
Build, Package and Push Images / sbom-scan (push) Successful in 49s
Build, Package and Push Images / container-build (push) Successful in 2m11s
Build, Package and Push Images / sonarqube (push) Successful in 2m12s
Build, Package and Push Images / container-sbom-scan (push) Successful in 39s
10 lines
191 B
C#
10 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;
|
|
}
|