コード例 #1
0
        public override void Deserialize(GenericReader reader)
        {
            base.Deserialize(reader);

            int version = reader.ReadInt();

            switch (version)
            {
            case 1:
            {
                Helm = reader.ReadItem() as RowBoatHelm;
                Rope = reader.ReadItem() as RowBoatRope;

                break;
            }
            }
        }
コード例 #2
0
 protected RowBoat(int ItemID)
     : base(ItemID)
 {
     Helm = new RowBoatHelm(this, 0x3EBC, new Point3D(0, 4, 1));
     Rope = new RowBoatRope(this, 0x14F8, new Point3D(0, -2, 4));
 }