2026-06-02 10:26:44 +08:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using SGModule.ConfigLoader;
|
|
|
|
|
|
2026-06-02 11:11:47 +08:00
|
|
|
namespace ZooMatch
|
2026-06-02 10:26:44 +08:00
|
|
|
{
|
|
|
|
|
[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;
|
|
|
|
|
}
|
|
|
|
|
}
|