Files
tbd-station-14/Content.Shared/Health/BodySystem/BodyPart/BodyPartProperties/ArmLength.cs
2020-05-13 21:48:49 +02:00

18 lines
386 B
C#

using Robust.Shared.Interfaces.Serialization;
using Robust.Shared.Serialization;
using System;
namespace Content.Shared.BodySystem {
[NetSerializable, Serializable]
class ArmLength : IExposeData {
private float _length;
public void ExposeData(ObjectSerializer serializer){
serializer.DataField(ref _length, "length", 2f);
}
}
}