18 lines
285 B
C#
18 lines
285 B
C#
|
using System;
|
||
|
|
||
|
using SLZ.Marrow.Utilities;
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace SLZ.Marrow.Interaction
|
||
|
{
|
||
|
[Serializable]
|
||
|
public class MarrowEntityPose
|
||
|
{
|
||
|
[SerializeField]
|
||
|
public SimpleTransform[] bodyPoses;
|
||
|
}
|
||
|
|
||
|
public partial class MarrowEntity
|
||
|
{
|
||
|
}
|
||
|
}
|