Files
pkNX/pkNX.WinForms/Subforms/Gen9a/Map/Dumping/SceneSpawner.cs
Kurt 0936c08eb1 LZA 1.0.2
Cumulative changes from the team.

Co-Authored-By: Matt <17801814+sora10pls@users.noreply.github.com>
Co-Authored-By: SciresM <8676005+SciresM@users.noreply.github.com>
Co-Authored-By: Lusamine <30205550+Lusamine@users.noreply.github.com>
2025-11-16 15:56:12 -06:00

15 lines
294 B
C#

using System.Collections.Generic;
using pkNX.Structures.FlatBuffers;
namespace pkNX.WinForms;
public sealed record SceneSpawner(
PackedVec3f Scale,
PackedVec3f Rotation,
PackedVec3f Position,
string Type,
string Name)
{
public List<object> Inner { get; set; } = [];
}