mirror of
https://github.com/kwsch/pkNX.git
synced 2026-08-20 17:34:11 -05:00
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>
15 lines
294 B
C#
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; } = [];
|
|
}
|