SharpMod.MessageHeader.MessageHeader C# (CSharp) Method

MessageHeader() public method

public MessageHeader ( MessageDestination destination, int messageType, IntPtr floatValue, IntPtr entity ) : System
destination MessageDestination
messageType int
floatValue System.IntPtr
entity System.IntPtr
return System
        public MessageHeader(MessageDestination destination, int messageType, IntPtr floatValue, IntPtr entity)
        {
            this.Destination = destination;
            this.MessageType = messageType;
            this.FloatValue = floatValue;
            this.Entity = entity;
        }
MessageHeader