mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-25 06:46:08 +00:00
14 lines
395 B
C#
14 lines
395 B
C#
using System.Numerics;
|
|
|
|
namespace PckStudio.Core
|
|
{
|
|
public class Box(Vector3 position, Vector3 size, Vector2 uv, float inflate, bool mirror)
|
|
{
|
|
public Vector3 Position { get; } = position;
|
|
public Vector3 Size { get; } = size;
|
|
public Vector2 Uv { get; } = uv;
|
|
public float Inflate { get; } = inflate;
|
|
public bool Mirror { get; } = mirror;
|
|
}
|
|
}
|