예제 #1
0
 void RenderReleasePopup(PopupMessageRelease popup)
 {
     RenderUniversalPopup(
         "You've released the product!",
         Visuals.Positive($"You got new users and {Balance.RELEASE_BRAND_POWER_GAIN} Brand Power!") +
         "\n\nIncrease Brand power if you want to get more clients!"
         //"\n\nBrand grows if you form partnerships, make innovations and capture markets"
         ,
         typeof(ClosePopupOK)
         );
 }
예제 #2
0
    void RenderReleasePopup(PopupMessageRelease popup)
    {
        var product = Companies.Get(Q, popup.companyId);
        var gain    = Marketing.GetClientFlow(Q, product.product.Niche);

        RenderUniversalPopup(
            "You've released the product!",
            Visuals.Positive($"You got new users and you can {C.RELEASE_BRAND_POWER_GAIN} Brand Power!")
            //Visuals.Positive($"You got new users and you can  {C.RELEASE_BRAND_POWER_GAIN} Brand Power!")
            //+ "\n\nIncrease Brand power if you want to get more clients!"
            //"\n\nBrand grows if you form partnerships, make innovations and capture markets"
            ,
            typeof(ClosePopupOK)
            );
    }