/// <summary>
        /// Determines whether the specified <see cref="OpenDis.Enumerations.Environment.ObjectState.MinefieldLaneMarker"/> instance is equal to this instance.
        /// </summary>
        /// <param name="other">The <see cref="OpenDis.Enumerations.Environment.ObjectState.MinefieldLaneMarker"/> instance to compare with this instance.</param>
        /// <returns>
        ///     <c>true</c> if the specified <see cref="OpenDis.Enumerations.Environment.ObjectState.MinefieldLaneMarker"/> is equal to this instance; otherwise, <c>false</c>.
        /// </returns>
        public bool Equals(MinefieldLaneMarker other)
        {
            // If parameter is null return false (cast to object to prevent recursive loop!)
            if ((object)other == null)
            {
                return(false);
            }

            return
                (this.VisibleSide == other.VisibleSide);
        }
        /// <summary>
        /// Creates the <see cref="OpenDis.Enumerations.Environment.ObjectState.MinefieldLaneMarker"/> instance from the uint value.
        /// </summary>
        /// <param name="value">The uint value which represents the <see cref="OpenDis.Enumerations.Environment.ObjectState.MinefieldLaneMarker"/> instance.</param>
        /// <returns>The <see cref="OpenDis.Enumerations.Environment.ObjectState.MinefieldLaneMarker"/> instance, represented by the uint value.</returns>
        public static MinefieldLaneMarker FromUInt32(uint value)
        {
            MinefieldLaneMarker ps = new MinefieldLaneMarker();

            uint mask0     = 0x30000;
            byte shift0    = 16;
            uint newValue0 = (value & mask0) >> shift0;

            ps.VisibleSide = (MinefieldLaneMarker.VisibleSideValue)newValue0;

            return(ps);
        }
        /// <summary>
        /// Determines whether the specified <see cref="OpenDis.Enumerations.Environment.ObjectState.MinefieldLaneMarker"/> instance is equal to this instance.
        /// </summary>
        /// <param name="other">The <see cref="OpenDis.Enumerations.Environment.ObjectState.MinefieldLaneMarker"/> instance to compare with this instance.</param>
        /// <returns>
        /// 	<c>true</c> if the specified <see cref="OpenDis.Enumerations.Environment.ObjectState.MinefieldLaneMarker"/> is equal to this instance; otherwise, <c>false</c>.
        /// </returns>
        public bool Equals(MinefieldLaneMarker other)
        {
            // If parameter is null return false (cast to object to prevent recursive loop!)
            if ((object)other == null)
            {
                return false;
            }

            return
                this.VisibleSide == other.VisibleSide;
        }
        /// <summary>
        /// Creates the <see cref="OpenDis.Enumerations.Environment.ObjectState.MinefieldLaneMarker"/> instance from the uint value.
        /// </summary>
        /// <param name="value">The uint value which represents the <see cref="OpenDis.Enumerations.Environment.ObjectState.MinefieldLaneMarker"/> instance.</param>
        /// <returns>The <see cref="OpenDis.Enumerations.Environment.ObjectState.MinefieldLaneMarker"/> instance, represented by the uint value.</returns>
        public static MinefieldLaneMarker FromUInt32(uint value)
        {
            MinefieldLaneMarker ps = new MinefieldLaneMarker();

            uint mask0 = 0x30000;
            byte shift0 = 16;
            uint newValue0 = value & mask0 >> shift0;
            ps.VisibleSide = (MinefieldLaneMarker.VisibleSideValue)newValue0;

            return ps;
        }