OpenMetaverse.PayPriceReplyEventArgs.PayPriceReplyEventArgs C# (CSharp) 메소드

PayPriceReplyEventArgs() 공개 메소드

public PayPriceReplyEventArgs ( Simulator simulator, UUID objectID, int defaultPrice, int buttonPrices ) : System
simulator Simulator
objectID UUID
defaultPrice int
buttonPrices int
리턴 System
        public PayPriceReplyEventArgs(Simulator simulator, UUID objectID, int defaultPrice, int[] buttonPrices)
        {
            this.m_Simulator = simulator;
            this.m_ObjectID = objectID;
            this.m_DefaultPrice = defaultPrice;
            this.m_ButtonPrices = buttonPrices;
        }
PayPriceReplyEventArgs