예제 #1
0
 public void Settings_Space(TransformSpaces space)
 {
     Space = space;
 }
        /// <summary>
        /// Reads the packet information from the specified stream.
        /// </summary>
        /// <param name="data">The stream to read the packet information from.</param>
        /// <remarks>
        /// Use to create a packet from a network stream.
        /// </remarks>
        public override void ReadData(CitpBinaryReader data)
        {
            base.ReadData(data);

            TransformationSpace = (TransformSpaces)data.ReadByte();
        }