9 lines
153 B
C#
9 lines
153 B
C#
|
using ProtoBuf;
|
|||
|
|
|||
|
namespace E016_ProtoBufExtendedModel;
|
|||
|
|
|||
|
[ProtoContract]
|
|||
|
public class SaveData
|
|||
|
{
|
|||
|
[ProtoMember(1)] public int Health { get; set; }
|
|||
|
}
|