Files
crystall-punk-14/Content.Shared/Health/BodySystem/BodyPart/BodyPartProperties/ArmLength.cs

18 lines
386 B
C#
Raw Normal View History

2020-05-13 14:48:49 -05:00

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);
}
}
}