41 lines
1.0 KiB
C#
41 lines
1.0 KiB
C#
// Filename : CECQShopConfig.cs
|
|
// Creator : Xu Wenbin
|
|
// Date : 2013/12/11
|
|
// Converted to C#: 2024
|
|
|
|
using System;
|
|
|
|
namespace PerfectWorld.Scripts.Shop
|
|
{
|
|
// Stub implementation - to be properly implemented later
|
|
public class CECQShopConfig
|
|
{
|
|
public const int CID_QSHOP_FASHION = 0; // Stub value
|
|
public const int CID_BACKSHOP_FASHION = 1; // Stub value
|
|
|
|
private static CECQShopConfig s_instance;
|
|
|
|
public static CECQShopConfig Instance()
|
|
{
|
|
if (s_instance == null)
|
|
{
|
|
s_instance = new CECQShopConfig();
|
|
}
|
|
return s_instance;
|
|
}
|
|
|
|
public void FindCategory(int idCategory, out int mainType, out int subType)
|
|
{
|
|
// Stub implementation - to be properly implemented later
|
|
mainType = -1;
|
|
subType = -1;
|
|
}
|
|
|
|
public void OnItemBuyed(uint goodsId)
|
|
{
|
|
// Stub implementation - to be properly implemented later
|
|
}
|
|
}
|
|
}
|
|
|