40 lines
1.0 KiB
C#
40 lines
1.0 KiB
C#
// Filename : CECUIConfig.cs
|
|
// Creator : Xu Wenbin
|
|
// Date : 2013/12/11
|
|
// Converted to C#: 2024
|
|
|
|
namespace PerfectWorld.Scripts.Shop
|
|
{
|
|
// Stub implementation - to be properly implemented later
|
|
public class CECUIConfig
|
|
{
|
|
private static CECUIConfig s_instance;
|
|
|
|
public static CECUIConfig Instance()
|
|
{
|
|
if (s_instance == null)
|
|
{
|
|
s_instance = new CECUIConfig();
|
|
}
|
|
return s_instance;
|
|
}
|
|
|
|
public GameUIConfig GetGameUI()
|
|
{
|
|
return new GameUIConfig();
|
|
}
|
|
}
|
|
|
|
public class GameUIConfig
|
|
{
|
|
public bool bEnableQShopFashionShop = false;
|
|
public bool bEnableQShopFashionShopFlashSale = false;
|
|
public string strQShopFashionShopFlashSaleTitle = "";
|
|
public bool bEnableBackShopFashionShop = false;
|
|
public bool bEnableBackShopFashionShopFlashSale = false;
|
|
public string strBackShopFashionShopFlashSaleTitle = "";
|
|
public bool bEnableCeilPriceBeforeDiscountToGold = false;
|
|
}
|
|
}
|
|
|