mirror of
https://github.com/4sval/FModel.git
synced 2026-04-05 08:36:10 -05:00
13 lines
284 B
C#
13 lines
284 B
C#
namespace PakReader
|
|
{
|
|
public struct FTrack
|
|
{
|
|
public FVector[] translation;
|
|
public FQuat[] rotation;
|
|
public FVector[] scale;
|
|
public float[] translation_times;
|
|
public float[] rotation_times;
|
|
public float[] scale_times;
|
|
}
|
|
}
|