mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-24 17:18:14 +03:00
18 lines
386 B
C#
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);
|
|
}
|
|
}
|
|
}
|