15 lines
294 B
C#
15 lines
294 B
C#
using Passer.Humanoid;
|
|
|
|
namespace RoboidControl
|
|
{
|
|
|
|
public class BoneThing : Thing
|
|
{
|
|
protected HumanoidTarget.TargetedBone bone;
|
|
|
|
public BoneThing(Participant owner, HumanoidTarget.TargetedBone bone) : base(owner)
|
|
{
|
|
this.bone = bone;
|
|
}
|
|
}
|
|
} |