mirror of
https://github.com/Jacobwasbeast/LegacyWeaveLoader.git
synced 2026-05-22 05:34:36 +00:00
15 lines
267 B
C#
15 lines
267 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace WeaveLoader.API.Assets;
|
|
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
internal struct ModelBox
|
|
{
|
|
public float X0;
|
|
public float Y0;
|
|
public float Z0;
|
|
public float X1;
|
|
public float Y1;
|
|
public float Z1;
|
|
}
|