15 lines
291 B
C#
15 lines
291 B
C#
using System.Collections.Generic;
|
|
using SGModule.ConfigLoader;
|
|
|
|
namespace BallKingdomCrush
|
|
{
|
|
[ConfigKey("VipClub")]
|
|
public class VipClub
|
|
{
|
|
public int id;
|
|
public int VipType;
|
|
public float DiscountPrice;
|
|
public float Price;
|
|
}
|
|
}
|