feat(models): add block model boxes + picking

This commit is contained in:
Jacobwasbeast
2026-03-11 15:12:35 -05:00
parent 6fabb8fd39
commit 788b7167a2
26 changed files with 1429 additions and 4 deletions

View File

@@ -0,0 +1,14 @@
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;
}