mirror of
https://github.com/kwsch/pkNX.git
synced 2026-09-14 13:35:13 -05:00
7 lines
254 B
C#
7 lines
254 B
C#
namespace pkNX.Structures.FlatBuffers.SWSH;
|
|
|
|
public partial class GFBPokeConfig
|
|
{
|
|
public AABB Bounds => new() { Min = new() { X = MinBX / 100, Y = MinBY / 100, Z = MinBZ / 100 }, Max = new() { X = MaxBX / 100, Y = MaxBY / 100, Z = MaxBZ / 100 } };
|
|
}
|