17 lines
359 B
C#
17 lines
359 B
C#
using System.Collections.Generic;
|
|
using SGModule.ConfigLoader;
|
|
|
|
namespace BallKingdomCrush
|
|
{
|
|
[ConfigKey("turntable")]
|
|
public class Turntable
|
|
{
|
|
public int id;
|
|
public int Seq;
|
|
public int wheel_item;
|
|
public float quantity;
|
|
public int weight;
|
|
public int[] Boost;
|
|
public int[] weight2;
|
|
}
|
|
} |