コード例 #1
0
ファイル: CM_Allegiance.cs プロジェクト: cmoski/aclogview
        public static AllegianceInfoResponseEvent read(BinaryReader binaryReader)
        {
            AllegianceInfoResponseEvent newObj = new AllegianceInfoResponseEvent();

            newObj.target = binaryReader.ReadUInt32();
            newObj.prof   = AllegianceProfile.read(binaryReader);
            return(newObj);
        }
コード例 #2
0
ファイル: CM_Allegiance.cs プロジェクト: cmoski/aclogview
        public static AllegianceUpdate read(BinaryReader binaryReader)
        {
            AllegianceUpdate newObj = new AllegianceUpdate();

            newObj.allegianceProfile = AllegianceProfile.read(binaryReader);
            newObj.etype             = binaryReader.ReadUInt32();
            return(newObj);
        }