OpenStory.Common.IO.PacketBuilder.WriteBoolean C# (CSharp) Method

WriteBoolean() public method

public WriteBoolean ( bool boolean ) : void
boolean bool
return void
        public void WriteBoolean(bool boolean)
        {
            this.ThrowIfDisposed();

            this.WriteDirect(LittleEndianBitConverter.GetBytes(boolean));
        }