using System; using System.Collections.Generic; using ProtoBuf; namespace KKSG { [ProtoContract(Name = "ArenaStarPara")] [Serializable] public class ArenaStarPara : IExtensible { [ProtoMember(1, Name = "newdata", DataFormat = DataFormat.TwosComplement)] public List newdata { get { return this._newdata; } } private readonly List _newdata = new List(); private IExtension extensionObject; IExtension IExtensible.GetExtensionObject(bool createIfMissing) { return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing); } } }